Hi,
A simple one Im sure for the wizards on this forum.
Would someone provide an idea to create a macro to select todays month. Details are below:
Thanks
Rohmeo
Exhibit 1
Nov 2017
Nov 2017
Dec 2017
Dec 2017
Dec 2017
Dec 2017
Dec 2017
Dec 2017
Jan 2018
Jan 2018
Jan 2018
Exhibit 2
Sub SelectToday()
For Each cell In ActiveSheet.Range("A1:A500")
If cell.Value = [Today()] Then
cell.Select
End If
Next
End Sub
A simple one Im sure for the wizards on this forum.
Would someone provide an idea to create a macro to select todays month. Details are below:
- Column A has a list of multipe records by month (see Exhibit 1)
- I would like to create a macro that goes to today's month (i.e top of 'Jan 2018')
- Cells are in Column A with number format mmm yyyy
- I have a similar macro for selecting today date - but would like to amend to select todays' month (see Exhibit 2)
Thanks
Rohmeo
Exhibit 1
Nov 2017
Nov 2017
Dec 2017
Dec 2017
Dec 2017
Dec 2017
Dec 2017
Dec 2017
Jan 2018
Jan 2018
Jan 2018
Exhibit 2
Sub SelectToday()
For Each cell In ActiveSheet.Range("A1:A500")
If cell.Value = [Today()] Then
cell.Select
End If
Next
End Sub