Macro needed to export (Copy/Paste) data into new excel files

viktor4e

New Member
Joined
Jun 30, 2014
Messages
16
Hi everyone,

I have an excel file with 8 worksheets. I would like to be able to select any cells on any of these worksheets and export (paste as values) only that data into a new excel file on my desktop. I would like to be able to repeat this procedure as many times as I want, and the files should be saved under different names (or be numbered). In addition, it would be useful if a message box appears to ask me to input a name for the file to be saved anytime the macro is run.

Thanks so much for helping.
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Hello,

something on the lines of

Code:
Sub SAVE_FILE()
    MY_FILE = InputBox("Please enter filename", Filename)
    Selection.Copy
    Workbooks.Add
    Range("A1").PasteSpecial (xlPasteValues)
    ActiveWorkbook.SaveAs "C:\" & MY_FILE
    ActiveWorkbook.Close (1)
End Sub
 
Upvote 0

Forum statistics

Threads
1,216,975
Messages
6,133,827
Members
449,835
Latest member
vietoonet

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top