Macro: create Copy of worksheet - paste special - save file based on cell reference

JrExcelTor

New Member
Joined
May 30, 2015
Messages
15
Hi All,

I am trying to complete a macro that will copy a sheet to a new workbook, copy and paste special as values, remove the original macro, name and save the sheet/workbook based on a cell reference, and finally share the file as email attachment.

What I have has been recorded as I do not know how to write VBA. The part I am struggling with is how to name the new worksheet and save the workbook based on cell reference C2 (Prospective Client Name).


I don't know if file path is needed but here is where I want the file saved:

--> /Users/davidsmith/Desktop/OA/Quotes

Here is what my macro looks like now:
THANKS IN ADVANCE!!!

Sub New_Quote()
'
' New_Quote Macro
'


'
Sheets("Client ROI").Select
ExecuteExcel4Macro "WINDOW.SIZE(398,85,"""")"
ExecuteExcel4Macro "WINDOW.MOVE(2,-42,"""")"
Sheets("Client ROI").Copy
ActiveSheet.Shapes.Range(Array("Bevel 2")).Select
Selection.Cut
Cells.Select
Selection.Copy
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
Range("C2").Select
Application.CutCopyMode = False
Selection.Copy
Sheets("Client ROI").Select
Application.CutCopyMode = False
Sheets("Client ROI").Name = "CSS"
Range("M16").Select
Application.Dialogs(xlDialogSendMail).Show
End Sub
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)

Forum statistics

Threads
1,214,784
Messages
6,121,535
Members
449,037
Latest member
tmmotairi

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