Hi there,
I want a certain range to be exported to a new spreadheet with a macro (the range can be fixed range OR can be selected)
I have the following,and does work, but the problem is many of the values I am exporting are vlookup values, and then when exporting, it export the vlookup string instead of the value in the cell.
How can I export only the values to a new spreadsheet?
Here is what I have:
Sub IssueRegister_Rectangle6_Click()
'
' export Macro
Range("C9:L60").Select
Selection.Copy
Workbooks.Add
ActiveSheet.Paste
ActiveWorkbook.SaveAs Filename:= _
"C:\Documents and Settings\Issue Register.csv" _
, FileFormat:=xlCSV, CreateBackup:=False
Application.DisplayAlerts = False
ActiveWorkbook.Close
Application.DisplayAlerts = True
End Sub
Thank you so long,
Jakes
Bookmarks