Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Dim rngTemp As Range
Set rngTemp = Workbooks("soourcedata.xls"). _ Worksheets("Sheet1").Range("F1:I100") ActiveCell.Value = WorksheetFunction.VLookup(Cells(ActiveCell, _ "A"), rngTemp, 4, 0) If this post helps click Yes --------------- Jacob Skaria "cluckers" wrote: thank Luke, However I need more help if you could. For the second argument it is going to be an another workbook called "sourcedata". the range is from F1 to the furthers column to the right and the furthest row down. How would I write that? so far I have ActiveCell.Value = WorksheetFunction.VLookup(Cells(ActiveCell, "A"), soourcedata.xls.range(F1,..........), 4, False) Not even sure if any of the second argument is correct. thanks "Luke M" wrote: Cells(ActiveCell.Row,"A") -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "cluckers" wrote: I am trying to use vlookup in a macro. I have to use ActiveCell.Value = WorksheetFunction.VLookup(........) because the active cell is in a column that will continuously move to the right. Therefore I can not use a static command. For the first argument of the vlookup how can I have it reference the cell is column A of the same row. If I can get that part I think I can get the rest. Thanks |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
VLOOKUP as a vb code | Excel Discussion (Misc queries) | |||
Using VLOOKUP in VBA code | Excel Worksheet Functions | |||
VLOOKUP code needed please | Excel Worksheet Functions | |||
VLOOKUP for Zip Code Ranges | Excel Worksheet Functions | |||
how to use a VLOOKUP function in a VBA code? | New Users to Excel |