View Single Post
 
Old 08-19-2018, 07:50 AM
rsrasc rsrasc is offline Windows 10 Office 2013
Competent Performer
 
Join Date: Mar 2014
Location: Germany
Posts: 148
rsrasc is on a distinguished road
Default

Quote:
Originally Posted by jeffreybrown View Post
When pasting values only, you need to use two lines in the macro...

Code:
Sub ValuesOnly()
    Workbooks("050 FY 2019 Expenses-SSE.xlsx").Sheets("Excel Sum-Reforecast-FY 18").Range("A4:A98").Copy
    Workbooks("FY 18-SSE Actuals Plus Reforecast Budget.xlsx").Sheets("050-REVENUE").Range("A4:A98").PasteSpecial xlPasteValues
End Sub
https://www.thespreadsheetguru.com/t...-only-with-vba
Hi Jeffrey,

Thank you for the code, and is working great.

Much appreciated.

Cheers!
Reply With Quote