Greeting.
I am using the following code to copy columns from wb2 (source workbook) to wb1 (destination workbook). Column CA has formulas within the cells that I need to paste as values.
![]()
wb2.Sheets("Bob Smith").Range("A1:A1100").Copy wb1.Sheets("Sheet1").Range("A1") wb2.Sheets("Bob Smith").Range("BJ1:BJ1100").Copy wb1.Sheets("Sheet1").Range("B1") wb2.Sheets("Bob Smith").Range("CA1:CA1100").Copy wb1.Sheets("Sheet1").Range("C1")
Bookmarks