N
nelly
HI does anyone know of a workaround as a formula for this VBA code.
Range("A1:U200").Select
test = Selection.Find(What:="40237", After:=ActiveCell,
LookIn:=xlValues, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Address
I thought it easier to explain this way.
40237 is a date and can be anywhere in the above range. I need to get the
value from the cell below.
Thanks in advance
Nelly
Range("A1:U200").Select
test = Selection.Find(What:="40237", After:=ActiveCell,
LookIn:=xlValues, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False).Address
I thought it easier to explain this way.
40237 is a date and can be anywhere in the above range. I need to get the
value from the cell below.
Thanks in advance
Nelly