I was hoping for some help from the geniuses on this thread!
I have a starting row of data in row 2 with subsequent formulas in rows 3 & 4 referencing the initial data (i've displayed the formulas in rows 3 and 4 below just for viewing sake).
I was looking to have a macro that would copy the last row, and fill the subsequent rows until the date in column A matches today's date.
[TABLE="border: 0, cellpadding: 0, cellspacing: 0"]
[TD="width: 64"] [/TD]
[TD="width: 64"]A[/TD]
[TD="width: 91"]B[/TD]
[TD="width: 91"]C[/TD]
[TD="align: right"] [/TD]
Date
[/td]Formula1
[/td]Formula2
[/td]
[TD="align: right"] [/TD]
21-Aug
[/td](100)
[/td]200
[/td]
[TD="align: right"] [/TD]
=+A6+1
[/td]=+B6-10
[/td]=+C6+25
[/td]
[TD="align: right"] [/TD]
=+A7+1
[/td]=+B7-10
[/td]=+C7+25
[/td]….
[/td]….
[/td]=+A8+1
[/td]=+B8-10
[/td]=+C8+25
[/td]=+A9+1
[/td]=+B9-10
[/td]=+C9+25
[/td]=+A10+1
[/td]=+B10-10
[/td]=+C10+25
[/td]=+A11+1
[/td]=+B11-10
[/td]=+C11+25
[/td]
[/TABLE]
I'm a super novice and can't make the connection on how to loop the copy code until it reaches today()
If Range("A" & xLastRow) = Date Then
ActiveSheet.Cells(xLastRow, 1).Select
With ActiveCell
.EntireRow.Copy
.EntireRow.Insert (I know this is wrong as it should be an autofill)
Please help!!
Sincerely,
Trying my hardest to learn!
jdax0725