I have a few columns (B to G), starting numbers in B3. Today I select data and copy it with macro into cell B3. Tomorrow I want the data copied to cell B4, the day after to B5.
When the month is over data should be copied to C3, ....
Now I have to change the desired B3, B4 everyday in the macro. How to do it automaticaly.
thanks in advance
Part of code:
Range("B47").Formula = "=SUM(B46-C46)"
Range("B47").Activate
Selection.Copy
Sheets("VIP Punten").Select
Range("C33").Select "THIS HAS TO CHANGE EVERYDAY"
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False