我编写了一个宏,用于根据另外两个单元格的连接值的vlookup返回一个单元格中的特定值。此宏可能需要在每列其他列中运行30列。有没有办法让我循环这个,这样我就不用输入30个变种了?
以下是我引用的代码部分:
Cells.Select
ActiveWorkbook.Worksheets("Vendor Request").Sort.SortFields.Clear
ActiveWorkbook.Worksheets("Vendor Request").Sort.SortFields.Add Key:=Range( _
"F2:F" & LR2), SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:= _
xlSortNormal
With ActiveWorkbook.Worksheets("Vendor Request").Sort
.SetRange Range("A1:BK" & LR2)
.Header = xlYes
.MatchCase = False
.Orientation = xlTopToBottom
.SortMethod = xlPinYin
.Apply
End With
If Cells(2, 6).Value <> "" Then
Range("G2").Select
ActiveCell.FormulaR1C1 = _
"=CONCATENATE(""Example: "",IF(ISNA(VLOOKUP(CONCATENATE(RC[-4],""; "",RC[-1]),'Sample Data'!C[-6]:C[-2],5,FALSE)),"""",VLOOKUP(CONCATENATE(RC[-4],""; "",RC[-1]),'Sample Data'!C[-6]:C[-2],5,FALSE)))"
If Cells(3, 6).Value <> "" Then
Range("G2").Select
Selection.AutoFill Destination:=Range("G2:G" & Range("F" & Rows.Count).End(xlUp).Row)
Else
End If
Columns("G:G").Select
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Else
End If
提前致谢!
编辑:终于搞定了。以下是我最终的结果:
Cells.Select
ActiveWorkbook.Worksheets("Vendor Request").Sort.SortFields.Clear
ActiveWorkbook.Worksheets("Vendor Request").Sort.SortFields.Add Key:=Columns( _
j - 1), SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:= _
xlSortNormal
With ActiveWorkbook.Worksheets("Vendor Request").Sort
.SetRange Range("A1:BK" & LR2)
.Header = xlYes
.MatchCase = False
.Orientation = xlTopToBottom
.SortMethod = xlPinYin
.Apply
End With
Dim LRj As Long
With Sheets("Vendor Request")
LRj = .Cells(.Rows.Count, j - 1).End(xlUp).Row
End With
If Cells(2, j - 1).Value <> "" Then
Cells(2, j).Select
ActiveCell.FormulaR1C1 = _
"=CONCATENATE(""Example: "",IF(ISNA(VLOOKUP(CONCATENATE(c3,""; "",C[-1]),'Sample Data'!c1:c6,5,FALSE)),"""",VLOOKUP(CONCATENATE(c3,""; "",C[-1]),'Sample Data'!c1:c6,5,FALSE)))"
If Cells(3, j - 1).Value <> "" Then
Cells(2, j).Select
Selection.AutoFill Destination:=Range(Cells(2, j), Cells(LRj, j))
Else
End If
Columns(j).Select
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Application.CutCopyMode = False
Else
End If
Next j
答案 0 :(得分:1)
您可以更改... Range("G2:G
...到Range("G2:AK
和Columns("G:G"
到Columns("G:AK"
或Range(Cells(2,j),Cells(...,j))