Re: Excel "Save_Send" Macro
You don't need to show the dialog, you can just send the workbook.
VB Code:
Sub Save_Send()
ActiveWorkbook.Save
ActiveWorkbook.SendMail Recipients:="
[email protected]", Subject:="This is your subject"
End Sub
Re: Excel "Save_Send" Macro
Man...THANKS!
I tried getting assistance from some VB guys here at work and they moaned and groaned about how hard it would be. Now I know they just didn't want to help out. Thanks again, I really appreciate it. :wave:
Re: Excel "Save_Send" Macro
Not a problem, just glad to help.
BTW welcome to the Forums
Re: Excel "Save_Send" Macro
Thanks for the 'welcome'. As you might have guessed my VB experience doesn't even make me a newbie. I'm attempting to talk my employer into some formal traning in VB, Jscript, ASP, HTML and XML. I think I've finally found someone who's willing to approve it. It's only been about 3 years of pleading. Wish me luck.