Hey,
So here is my code and i require it to offset select cells to the left until J23 and to the right until NO23.
Sub hideme()
Sheets("Settings").Visible = True
Sheets("Main").Select
For Each cell In ActiveSheet.Range("J23:NO23")
If cell.Value = [Today()] Then
cell.Select
End...