Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I need some help with a simple macro. I need it to spin thru all the rows of
Sheet B, do a vlookup using project number to pick up project name from Sheet A, and place the project name in Sheet B. Sample information: Sheet A - Project Overview Col A = Project Number (lookup field, match with Sheet B, Col D) Col B = Project Name (to be copied to Sheet B MoProject Name after the macro is run) Sheet B - Monthly Project Details Col D = MoProject Number (lookup field - match with Sheet A, Col A) Col E = MoProject Name (empty prior to the macro being run, contains Project Name from Sheet A after macro is run) |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Use worheetfunction.vlookup() when you are not looking for an exact amtch.
In your case where you are looking for exact matches then use find. with sheets("Sheet B") RowCount = 1 Do while .Range("D" & RowCount) < "" ProjNum = .Range("D" & RowCount) with sheets("Sheet A") set c = .Columns("A").find(what:=ProjNum,lookin:=xlvalues, lookat:=xlwhole) end with if not c is nothing then .Range("D" & RowCount) = c.offset(0,1) end if RowCount = RowCount + 1 loop end with "Midwest-Lisa" wrote: I need some help with a simple macro. I need it to spin thru all the rows of Sheet B, do a vlookup using project number to pick up project name from Sheet A, and place the project name in Sheet B. Sample information: Sheet A - Project Overview Col A = Project Number (lookup field, match with Sheet B, Col D) Col B = Project Name (to be copied to Sheet B MoProject Name after the macro is run) Sheet B - Monthly Project Details Col D = MoProject Number (lookup field - match with Sheet A, Col A) Col E = MoProject Name (empty prior to the macro being run, contains Project Name from Sheet A after macro is run) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
using a vlookup command in a for next loop in a macro in excel | Excel Programming | |||
using a vlookup command in a for next loop in a macro in excel | Excel Discussion (Misc queries) | |||
Excel macro/function like VLOOKUP that sums eventual multiple matches | Excel Programming | |||
Please help.. VLookup Macro | Excel Programming | |||
Excel Macro for VLookup Function | Excel Programming |