Macro for Emailing a spreadsheet

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi All
I have created an Excel workbook for my boss with forms and dropdowns etc.
He has decided that he wants a Button on the screen that will allow him to
E-Mail the completed form back to me when he has filled it in.
Is it possible to do this with a Macro from within Excel
Any advice, code, suggestions, etc, would be greatly appreciated.
Getting a new boss is not an option
 
Hi Michael,

He has decided that he wants a Button on the screen that will allow him to
E-Mail the completed form back to me when he has filled it in.
Is it possible to do this with a Macro from within Excel
Any advice, code, suggestions, etc, would be greatly
appreciated.

Try

Sheets("whatever").Range("whatever").Activate
Application.Dialogs(xlDialogSendMail).Show

Or Select and Activate the Form... it depends if he would
just send you the data or the complete layout withing the
worksheet...

Then you can connect that Macro with a button and voila!
Getting a new boss is not an option
--

WHY NOT??? :o)

Best regards

Markus
 
Thanks guys
That is just what I needed. Thank you for a quick and efficient response.

Regards
Michael
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top