AlexanderBB
Well-known Member
- Joined
- Jul 1, 2009
- Messages
- 2,061
- Office Version
- 2019
- 2010
- Platform
- Windows
I'm trying this
frow = .Cells.Find(What:=x.Col, _
After:=.Cells(1, KeyCol), _
lookIn:=xlValues, _
LookAt:=xlWhole, _
SearchOrder:=xlByRows, _
SearchDirection:=xlNext, _
MatchCase:=False).Row
But getting Object doesn't support....
I'm wanting the the row number where Col KeyCol contains x.Col
There's only one instance of x.Col in the column.
frow = .Cells.Find(What:=x.Col, _
After:=.Cells(1, KeyCol), _
lookIn:=xlValues, _
LookAt:=xlWhole, _
SearchOrder:=xlByRows, _
SearchDirection:=xlNext, _
MatchCase:=False).Row
But getting Object doesn't support....
I'm wanting the the row number where Col KeyCol contains x.Col
There's only one instance of x.Col in the column.