Hello,
please help me with Vlookup VBA code to fill cells untill last row but look in sheet2 without specified name. It will differ. My table in sheet 1 has about 1 Mil rows.
thx
W.
please help me with Vlookup VBA code to fill cells untill last row but look in sheet2 without specified name. It will differ. My table in sheet 1 has about 1 Mil rows.
Code:
Dim LR As Long
LR = Range("A" & Rows.count).End(xlUp).row
Range("K2").Formula = "=VLOOKUP(A2,[B]Sheet2!A$2:F$"[/B] & LR & ",6,FALSE)"
what next?
thx
W.