Hello,
Below searches row 1 for value corresponding to the testData variable.
How could i adapt this to search row 1 beginning at column F (rather than col A)?
I'd like to continue using Find rather than a loop.
Much appreciated.
Below searches row 1 for value corresponding to the testData variable.
How could i adapt this to search row 1 beginning at column F (rather than col A)?
I'd like to continue using Find rather than a loop.
VBA Code:
Set d = Sheets("Testing").Rows(1).Find(What:=testData, LookAt:=xlWhole)
Much appreciated.