I currently have a macro that selects data based on the current date:
If ActiveCell.Value = Date Then
I need to change that to select the data in that cell that is equal to not only todays date but every date for 1 week in the future.
Ostensibly, it would be If ActiveCell.Value = DATE + 1 week.
If ActiveCell.Value = Date Then
I need to change that to select the data in that cell that is equal to not only todays date but every date for 1 week in the future.
Ostensibly, it would be If ActiveCell.Value = DATE + 1 week.