I need help with the below macro.
I run a macro for my report on a daily basis. But only on Mondays, I need to repeat the below operations two times more(3 times altogether):
Range("B8").End(xlToRight).Offset(, 0).Select
Selection.Copy
ActiveCell.Offset(0, 1).Select
ActiveSheet.Paste
Range("B9").End(xlToRight).Offset(, 0).Select
Selection.Copy
ActiveCell.Offset(0, 1).Select
ActiveSheet.Paste
I'm guessing that I need to use the Weekday(Now()) = vbMonday
statement but not 100% sure how to use it with the above code.
Thanks in advance!