I have created the following macro to copy a worksheet called Parsed to a new workbook...
the problem that i am running into is that it is coping the actual formula's to the new workbook.
All i need it to do is copy the values in the worksheet so that the data will show in a new workbook.
Thank you
the problem that i am running into is that it is coping the actual formula's to the new workbook.
All i need it to do is copy the values in the worksheet so that the data will show in a new workbook.
Code:
Sub PARSE()
Sheets("Parsed").Select
Cells.Select
Selection.Copy
Sheets("Parsed").Select
Range("A1").Select
Columns("A:Q").Select
Workbooks.Add
ActiveSheet.Paste
End Sub
Thank you
Last edited: