Macro Help to Name Email Spreadsheet

Emb21

Board Regular
Joined
Jul 8, 2004
Messages
152
Hello all,

Using Excel 2003. This macro emails an excel spreadsheet as an attachment but doesn't give the attachment a specific name (calls it book4.xls) so I am trying to accomplish the following:

1. Name the file I am sending to what cell B4 text has on the same sheet (this macro calls it a generic name, i.e. Book4.xls)

2. Add the text from B4 name to the line in subject along with the format date (see line "arg2:")

For Each sh In ActiveWorkbook.Sheets
If sh.Name <> "Dining Summary Transfer" Then
Application.DisplayAlerts = False
Application.DisplayAlerts = True
End If
Next sh

With ActiveWorkbook

Application.Dialogs(xlDialogSendMail).Show arg1:="", _
arg2:="Dining Summary Transfer Sheet" & Format(Date, " dd/mmm/yyyy")
End With

Any help would be appreciated.

Thanks,
Eric from PA
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.

Forum statistics

Threads
1,224,586
Messages
6,179,711
Members
452,939
Latest member
WCrawford

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