Add workbook and automatic dispatch via mail

Nelson78

Well-known Member
Joined
Sep 11, 2017
Messages
526
Office Version
  1. 2007
Good morning.

I'm working on this stuff with the help of the macro recorder. But clearly it's not exaustive for specific needs.

I've a workbook named "source".
Starting from a sheet named "last" of this workbook, I've to generate a new workbook with some datas and sending it in csv format to e-mail adresses via Microsoft Outlook.

This is my work with the macro recorder.



Code:
Sub sent_mail()

    Workbooks.Add 'open a new workbook'
    Sheets("Sheet2").Select 'delete useless sheets, maybe not necessary'
    ActiveWindow.SelectedSheets.Delete
    Sheets("Sheet3").Select
    ActiveWindow.SelectedSheets.Delete
    ChDir "C:\Users\john.smith\Desktop"
    ActiveWorkbook.SaveAs Filename:="C:\Users\john.smith\Desktop\example.csv" _
        , FileFormat:=xlCSV, CreateBackup:=False 'save with name example'
    
    Windows("source.xlsm").Activate
    Range("A1").Select
    Range(Selection, Selection.End(xlDown)).Select
    Range(Selection, Selection.End(xlToRight)).Select
    Selection.Copy 'copy needed datas'
    Windows("example.csv").Activate
    Selection.PasteSpecial Paste:=xlPasteValuesAndNumberFormats, Operation:= _
        xlNone, SkipBlanks:=False, Transpose:=False 'past needed datas on csv new workbook'
    Application.CutCopyMode = False 
    
    Application.Dialogs(xlDialogSendMail).Show 
    
End Sub

Furthermore, I've to name the new workbook using one cell of the "source" workbook. The cell is B2 in a sheet called "test".

The e-mail adresses that have to receive the mail are: "frank@example.com" and "mark@example.com"

Thank you.
 
Last edited:

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Perhaps I've to explane the concepts in a more concise way.

1) Add a new workbook;
2) copy and paste datas from a original workbook to the new one;
3) name the new workbook using e value situate in a cell of the original workbook;
4) send via e-mail to specific e-mail adresses.
 
Upvote 0
Hi, here is some code you can test:

Code:
Sub Sent_mail()

Dim OMail As Object
Dim FName As String

FName = "C:\Users\john.smith\Desktop\" & Range("B2").Value & ".csv"

ActiveSheet.Copy

Application.DisplayAlerts = False
ActiveWorkbook.SaveAs Filename:=FName, FileFormat:=xlCSV, CreateBackup:=False
ActiveWorkbook.Close False
Application.DisplayAlerts = True

Set OMail = CreateObject("Outlook.Application").CreateItem(0)

With OMail
    .to = "frank@example.com;john@example.com"
    .Subject = "Subject"
    .Body = "Body"
    .Attachments.Add FName
    .Display 'Change to .Send to send immediately
End With

End Sub
 
Last edited:
Upvote 0
I've examined your code and adapted it to my real work.

It's all ok except for an aspect, maybe a merely local problem (in a geographic meaning).

When the addressee opens the sent file, the datas are not divided by columns as the original, but divided by commas (,,,).

How can I dispatch them with datas in columns?


Thank you.
 
Last edited:
Upvote 0
Because the addressee should not open the file, but just upload it in a software.

As the upload has not been successful, we've opened it in order to identify the problem.
 
Upvote 0
As the upload has not been successful, we've opened it in order to identify the problem.

CSV files are comma separated values, i.e. they do not have columns. Excel (normally) automatically parses them when they are opened.

If the file is not uploading correctly to your external software then it's unlikely to be related to how your addressee's Excel treats/parses the file.
 
Last edited:
Upvote 0
Doing manually the operation of saving, the file is saved as wished (datas divided by columns).
That is what I read with the macro recorder.

Code:
ChDir "C:\Users\john.smith\Desktop"
    ActiveWorkbook.SaveAs Filename:="C:\Users\john.smith\Desktop\example.csv", _
        FileFormat:=xlCSV, CreateBackup:=False

Obviously, if the best solution doesn't exist, we'll proceed with the second best (sending the file in xlsx format).
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,139
Messages
6,123,263
Members
449,093
Latest member
Vincent Khandagale

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