Excel VBA to match and line up rows

后端 未结 2 463
醉梦人生
醉梦人生 2020-11-28 14:16

I have an Excel document with columns A to J. I have columns K to N with related data, but not aligned.

I need to match value from value in column F with value in co

相关标签:
2条回答
  • 2020-11-28 14:36

    Sort columns K - M and move them further away (like in X-Z)

    In columns K-M add a VLOOKUP() function to pull data from X-Z based on column F.

    To make it pretty pull out the row# with the INDEX() function and only if found copy the data from X-Z to K-L with the MATCH() function. Otherwise return an empty string.

    Columns A-J with data, with column F containing the lookup values

    Column X-Z with reference table with X containing the loopup match values

    Add a column N with =MATCH((Value in F),(XYZ Table),FALSE) this produces either a #N/A or a row number

    Column K with =IF( NOT( ISNA(Value in N) ), INDEX((X Table), (Value in N) ), "")

    Column L with =IF( NOT( ISNA(Value in N) ), INDEX((Y Table), (Value in N) ), "")

    Column M with =IF( NOT( ISNA(Value in N) ), INDEX((Z Table), (Value in N) ), "")

    Unless you want to do it in VBA, this works.

    0 讨论(0)
  • 2020-11-28 14:46

    The easiest way would probably be 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 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 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
    
    strSQL = "SELECT * " _
           & "FROM [Sheet2$A1:J5] a " _
           & "LEFT JOIN [Sheet2$K1:N5] b " _
           & "ON a.F=b.k "
    
    rs.Open strSQL, cn, 3, 3
    
    
    ''Pick a suitable empty worksheet for the results
    
    Worksheets("Sheet3").Cells(2, 1).CopyFromRecordset rs
    
    ''Tidy up
    rs.Close
    Set rs = Nothing
    cn.Close
    Set cn = Nothing
    
    0 讨论(0)
提交回复
热议问题