Ignore the below
Bit of VB I need for a macro on an excel spreadsheet I use, but can't email it to myself
Code:
Sub FindDate() For Each cell In ActiveSheet.Range("c2:zz3") If cell.Value = [Today()] Then cell.Select End If Next End Sub
Comment