Hi all,
I was able to create a macro that allows me, with the push of a button, to send he Excel file to a certain address.
Sub Mod_SendWorkbook()
Dim OutlookApp As Object
Dim OutlookMail As Object
Set OutlookApp = CreateObject("Outlook.Application")
Set OutlookMail = OutlookApp.CreateItem(0)...