I'm trying to open a worksheet, and determine what row a specific Date (e.g. 08/01/2004) is in. I found this code:
Set FoundCell = Range("A1:A100").Find (what:="7/18/1998")
which creates an object 'FoundCell'. I assume it is a Range object, but I can't seem to access any of it's properties?
Set FoundCell = Range("A1:A100").Find (what:="7/18/1998")
which creates an object 'FoundCell'. I assume it is a Range object, but I can't seem to access any of it's properties?