still learning
Well-known Member
- Joined
- Jan 15, 2010
- Messages
- 821
- Office Version
- 365
- Platform
- Windows
Hi
I'm trying to copy from a range name in one workbook sheet1 to another workbook sheet1
both workbooks are going to be open.
If I go to R37038C1..(A37038) and type in "=+'2024 review.xlsm'!datatocopy", it works
Using F8, the Goto part works ..nothing happens after and the sun ends
mike
I'm trying to copy from a range name in one workbook sheet1 to another workbook sheet1
both workbooks are going to be open.
If I go to R37038C1..(A37038) and type in "=+'2024 review.xlsm'!datatocopy", it works
Using F8, the Goto part works ..nothing happens after and the sun ends
VBA Code:
Sub copyfrom2014()
Application.Goto Reference:="R37038C1"
ActiveCell.Formula2R1C1 = "=+'2024 review.xlsm'!datatocopy"
End Sub
mike