I am trying to add data from another cell on another sheet to an existing cell with text.
The cell A1 should read, "Pay Summary #" and then the code from Q9 offset by 1 or Q10.
I cannot get the last part of the formula to display the information from Q10. Here is what I have so far:
Sub Add_info() ' '
PayRequestNumber = Sheets("Billing Summary").Range("Q9").Offset(1, 0)
Sheets("1").Select
ActiveSheet.Range("A1").Value = "'" & "Pay Summary #" & =PayRequestNumber"
End Sub