teatimecrumpet
Active Member
- Joined
- Jun 23, 2010
- Messages
- 307
Hi,
I'm using the below bit of code to copy a range and then move it to another workbook. But I'd like to place only the values and not the underlying formulas.
The code below is within a loop.
Thanks
I'm using the below bit of code to copy a range and then move it to another workbook. But I'd like to place only the values and not the underlying formulas.
The code below is within a loop.
Thanks
ws.Range(ws.Range("A4"), ws.Range("D65536").End(xlUp)).Copy Destination:=Workbooks("DestinationWorkbook").Worksheets("sheet1").Range("A65536").End(xlUp).Offset(1, 0)