I have the following macro set up to copy data from cells AA1, AB1 and AC1 into the next open row for columns B, C and D.
Code:
Sub Test()
Sheet1.Range("AA1:AC1").Copy Sheet1.Range("B" & Rows.Count).End(3)(2)
End Sub
The problem I'm running into is that cells AA1, AB1 and AC1 have formulas to display the cell value from another sheet. So when I run the macro, all that displays in columns B, C and D are "0"s. How can I get it so that it will copy the text over?
Thank you,
Code:
Sub Test()
Sheet1.Range("AA1:AC1").Copy Sheet1.Range("B" & Rows.Count).End(3)(2)
End Sub
The problem I'm running into is that cells AA1, AB1 and AC1 have formulas to display the cell value from another sheet. So when I run the macro, all that displays in columns B, C and D are "0"s. How can I get it so that it will copy the text over?
Thank you,