I have been unable to use the Find Method in order to find a substring of dates within a date column
For example, I would like to find the string "08/1980" in a column which contains dates displayed in DD/MM/YYYY format in order to loop through all rows with a date in August 1980
It works manually, and if I record a macro doing that search, executing the macro produces an error. The macro contains only one line :
Selection.Find(What:="08/1980", ...).Activate
And since the Find method does not work, there is no range returned and the Activate method runs into an error.
Please note that the thing works for finding whole dates, using Find(What:=Cdate("1/8/80")...) This works OK. The problem is when searching for substrings
Any help would be greatly appreciated !
Jean-Marie
Bookmarks