I have a running monthly report for accounting for our sales. Each day, I get our sales for each branch in one report. I have a Vlookup formula saved in cell E1 with a formula that will pull over the information from the report to another sheet depending on what I am working on. I can copy E1 and paste into each cell in a row with range of columns B-S and then i copy that row again and paste values so that it doesn't change my amounts. The next day, i repeat process on the next row so that it gives me a running monthly total per branch and then for the company as a whole. My monthly chart always is around 23 rows.(rows 6-28 in excel)
I need a macro that will do the following: on the 1st, i run the macro and it will copy my cell E1 and paste it into B6 - S6 row, then copy that row and paste values that row. Then on the 2nd of the month, i run the macro and it repeats but on row B7-S7. Then on the 3rd of the month, i run the macro and it repeats but on row B8-S8.
Is this possible?
This is what i have with just recording a macro.
Sub Charges()
'
'Charges Macro
'Run Formula for charges
'
' Keyboard Shortcut: Ctrl+Shift+C
'
Range("E1").Select
Selection.Copy
Range("B8:S8").Select
ActiveSheet.Paste
Application.CutCopyMode = False
Selection.Copy
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub