Cell A4 has a date.
I recorded a macro to go to the cell to the right, which is A4. Grab the handle and bring it down to cell A5 to give me the next date.
Is there a way to change =Range("A4:A5") to reference the current cell?
And, is there a way to excludes Sundays from all future dates. Something like if Sunday, go to next day.
I recorded a macro to go to the cell to the right, which is A4. Grab the handle and bring it down to cell A5 to give me the next date.
Is there a way to change =Range("A4:A5") to reference the current cell?
Code:
Selection.AutoFill Destination:=Range("A4:A5"), Type:=xlFillDefault
And, is there a way to excludes Sundays from all future dates. Something like if Sunday, go to next day.