Good day,
I am new to the VBA code for excell.
I am trying to automate a process for my small business.
I am trying to create a macro to find multiple values, one of them is "B00ZL31582".
All i came with so far is:
Cells.Find(What:="B00ZL31582", After:=ActiveCell, LookIn:=xlValues, _
LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate
How can i find multiple values all at the same time?
Then select them all, and after select all of the rows in which the value is.
Basically all i want to do is a mass find all on multiple values...
Thank you for your help in advance!!
I am new to the VBA code for excell.
I am trying to automate a process for my small business.
I am trying to create a macro to find multiple values, one of them is "B00ZL31582".
All i came with so far is:
Cells.Find(What:="B00ZL31582", After:=ActiveCell, LookIn:=xlValues, _
LookAt:=xlWhole, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Activate
How can i find multiple values all at the same time?
Then select them all, and after select all of the rows in which the value is.
Basically all i want to do is a mass find all on multiple values...
Thank you for your help in advance!!