Rich Seidner
New Member
- Joined
- Aug 16, 2016
- Messages
- 21
I search for data (it's my Find Next macro) using the following line which works fine ONLY as long as the cursor is in column B. Otherwise i get an error, Run-time error "13" Type Mismatch.
How do i change my code to make sure it only looks for stuff in Column B and avoids that error message?
Thanks ...
Code:
ActiveWorkbook.Worksheets("Contacts").Columns(2).Find(FTW, After:=Range(foundtxt)).Select
How do i change my code to make sure it only looks for stuff in Column B and avoids that error message?
Thanks ...