Of course I can
declare variable names and their type:
Set variable for ws
This creates the the loop which we are using For Each in a certain range. the ws.Range part is setting the range which we could do prior by declaring and setting another variable. N.B - We're using UsedRange to find the last row we want to use
To declare and set another variable for the range we would
This would then change the For Loop to
Next we're checking if the cell (c) is = to todays date and if it is we want to select it and exit this routine because we've found what we're looking for. If it's not equal to todays date it will move onto the next cell in the range
Bookmarks