2010-06-14 4 views
1

나는 내가 다음에서 VLOOKUP을 사용 할 수있는 더 긴 열을 만들기 위해 2 개의 다른 시트에서이 별도의 열을 가입하려합니다.엑셀 VBA/SQL 연합 (EU)

Sheet1의 A, B, C, D, E, F, G

시트 2 A, B, C, D, E, F, G

내가 (연합) 열을 가입 할

함께 시트 2와 새 목록의 고유 값을 찾을에서 시트 1과 C에서 B. 나는 이것을 몇 주 동안 해왔다.

감사

답변

5

당신은 Excel에서 ADO를 사용할 수 있습니다.

Dim cn As Object 
Dim rs As Object 
Dim strFile As String 
Dim strCon As String 
Dim strSQL As String 
Dim s As String 
Dim i As Integer, j As Integer 

''This is not the best way to refer to the workbook 
''you want, but it is very conveient for notes 
''It is probably best to use the name of the workbook. 

strFile = ActiveWorkbook.FullName 

''Note that if HDR=No, F1,F2 etc are used for column names, 
''if HDR=Yes, the names in the first row of the range 
''can be used. 
''This is the Jet 4 connection string, you can get more 
''here : http://www.connectionstrings.com/excel 

strCon = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strFile _ 
    & ";Extended Properties=""Excel 8.0;HDR=Yes;IMEX=1"";" 

''Late binding, so no reference is needed 

Set cn = CreateObject("ADODB.Connection") 
Set rs = CreateObject("ADODB.Recordset") 


cn.Open strCon 

''A sample query 
strSQL = "SELECT Distinct A, B C FROM (" _ 
     & "SELECT A, B, C " _ 
     & "FROM [Sheet1$] " _ 
     & "UNION ALL " _ 
     & "SELECT A, B, C " _ 
     & "FROM [Sheet2$]) As J " 


''Open the recordset for more processing 
''Cursor Type: 3, adOpenStatic 
''Lock Type: 3, adLockOptimistic 
''Not everything can be done with every cirsor type and 
''lock type. See http://www.w3schools.com/ado/met_rs_open.asp 

rs.Open strSQL, cn, 3, 3 

''Write out the data to an empty sheet (no headers) 
Worksheets("Sheet3").Cells(2, 1).CopyFromRecordset rss 
+0

완벽하게 작동합니다. 한 가지 더. 시트 1의 제 2 행은 헤더 정보, 및 상기 제 4 헤더 정보를 삽입하거나되어있다. 어떻게 그들을 제외하는 모든 제안? – Edge

+0

연결 문자열에서 HDR = Yes는 아마 맞지 않는 헤더 행을 허용하므로 HDR = No로 변경하고 시트에 범위를 추가합니다 (예 : "FROM [Sheet1 $ A3 : C102]"). HDR = 아니요 인 경우 F1, F2 ... Fn – Fionnuala

+0

종단을 사용하여 열을 참조해야합니다. 감사합니다 – Edge