#1   Report Post  
John
 
Posts: n/a
Default Macro to save

I have a little problem. I have created a form that is too large to send to
my department. The only portion of the form that i need is what really needs
to be emailed. Someone once suggested using SendMail, but i can not figure
that out.

1. Can you send a single worksheet within a workbook without using SendMail.

if not

2. I have figured out how to copy a worksheet into a new workbook, but how
do you include that as well as a save promt that will allow users to select
the name they want to save it as?

I hope this makes sense. Thank you for any help that you can be
  #2   Report Post  
Paul B
 
Posts: n/a
Default

John, have a look at Ron's site here for ways to do it

http://www.rondebruin.nl/sendmail.htm#Tips
--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2002 & 2003

"John" wrote in message
...
I have a little problem. I have created a form that is too large to send
to
my department. The only portion of the form that i need is what really
needs
to be emailed. Someone once suggested using SendMail, but i can not
figure
that out.

1. Can you send a single worksheet within a workbook without using
SendMail.

if not

2. I have figured out how to copy a worksheet into a new workbook, but how
do you include that as well as a save promt that will allow users to
select
the name they want to save it as?

I hope this makes sense. Thank you for any help that you can be



  #3   Report Post  
Gord Dibben
 
Posts: n/a
Default

John

Ron de Bruin's SendMail add-in is very good utility and easy to use.

Just download the file and place it in your Office\Library folder.

Go to ToolsAdd-ins and checkmark it.

A menu item will show under Tools.

If you are using Outlook from MS Office, no problems.

On the other hand, to copy the activesheet only to a new workbook use this
macro. Users have to type in a name in the inputbox.

Sub Make_New_Book()

Application.ScreenUpdating = False
Application.DisplayAlerts = False

ActiveSheet.Copy
newname = InputBox("Enter a name for the new workbook")
ActiveWorkbook.SaveAs Filename:=ThisWorkbook.Path & "\" & newname
ActiveWorkbook.Close

Application.DisplayAlerts = True
Application.ScreenUpdating = True
End Sub


Gord Dibben Excel MVP

On Thu, 28 Apr 2005 11:38:14 -0700, "John"
wrote:

I have a little problem. I have created a form that is too large to send to
my department. The only portion of the form that i need is what really needs
to be emailed. Someone once suggested using SendMail, but i can not figure
that out.

1. Can you send a single worksheet within a workbook without using SendMail.

if not

2. I have figured out how to copy a worksheet into a new workbook, but how
do you include that as well as a save promt that will allow users to select
the name they want to save it as?

I hope this makes sense. Thank you for any help that you can be


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Save Macro - yet another question Roger Excel Discussion (Misc queries) 4 April 14th 05 09:28 PM
How to stop getting the file save box when running a macro Pank Mehta Excel Discussion (Misc queries) 1 March 29th 05 04:05 PM
record an excel macro, save on network so that everyone can access Conajo Excel Discussion (Misc queries) 5 February 10th 05 11:50 PM
Macro in Excel 2002 to save a workbook to a FTP location Lloyd Excel Discussion (Misc queries) 0 December 21st 04 02:49 PM
How do I create a macro to Save As? Shelly9633 Excel Discussion (Misc queries) 3 December 3rd 04 05:38 PM


All times are GMT +1. The time now is 09:43 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"