我想在下面的给定示例中使用VBA获得多对多的映射关系

时间:2013-01-04 06:30:45

标签: excel vba excel-vba

输入1:

RICEFW ID   RTM ID
1   1
2   1
3   1
3   2
4   2
4   3

输入2:

RTM ID  DT ID
1   1
2   2
3   2
1   4
3   4

输出类似于:

RICEFW ID   RTM ID  DT ID
1   1   1
1   1   4
2   1   1
2   1   4
3   1   1
3   1   4
3   2   2
4   2   2
4   3   2
4   3   4

行的顺序不必相同,但应该有10种不同的RICEFW / RTM / DT组合。 我是VBA的新手,非常感谢你的帮助。

1 个答案:

答案 0 :(得分:2)

您可以使用ADO with Excel

Dim cn As Object
Dim rs As Object
Dim strFile As String
Dim strCon As String
Dim strSQL As String
Dim i As Integer

    ''This is not the best way to refer to the workbook
    ''you want, but it is very convenient 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 ACE connection string, you can get more
    ''here : http://www.connectionstrings.com/excel

    strCon = "Provider=Microsoft.ACE.OLEDB.12.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

    ''Sheet or range, or named range
    strSQL = "SELECT a.[RICEFW ID], a.[RTM ID], b.[DT ID]" _
       & "FROM [Sheet5$A1:D7] a INNER JOIN [Sheet5$D1:E6] b " _
       & "ON a.[RTM ID] = b.[RTM ID] " _
       & "ORDER BY a.[RICEFW ID], a.[RTM ID]"

    rs.Open strSQL, cn, 3, 3

    ''Pick a suitable empty worksheet for the results
    For i = 0 To rs.Fields.Count - 1
        Worksheets("Sheet5").Cells(1, i + 7) = rs(i).Name
    Next

    Worksheets("Sheet5").Cells(2, 7).CopyFromRecordset rs

    ''Tidy up
    rs.Close
    Set rs = Nothing
    cn.Close
    Set cn = Nothing