All,
Given:
Cell B2 has the current day (Mon, Tues, Wed, Thurs, Fri)
Cell B3 has the full date (01/06/2003)
Cells B4:B29 have either a text Yes or a No value
Find:
On workbook load I want to check the date in cell B3 to verify that it is today’s date. If it is today's date, do nothing. If it is not, move the entire column B to column C, column C to column D, and column D to column E... and so on.
does this work for the latter most logic question?
Columns("B:B"
.Select
Selection.Delete Shift:=xlToLeft
If not, any suggestions?
Best,
Matt
Given:
Cell B2 has the current day (Mon, Tues, Wed, Thurs, Fri)
Cell B3 has the full date (01/06/2003)
Cells B4:B29 have either a text Yes or a No value
Find:
On workbook load I want to check the date in cell B3 to verify that it is today’s date. If it is today's date, do nothing. If it is not, move the entire column B to column C, column C to column D, and column D to column E... and so on.
does this work for the latter most logic question?
Columns("B:B"
Selection.Delete Shift:=xlToLeft
If not, any suggestions?
Best,
Matt