WORK SHEET

  • Thread starter Thread starter Ali
  • Start date Start date
A

Ali

I want to em each worksheet seperately and be able to save each worksheet
seperately?

Thanks in advance :)
 
YOU could have recorded this macro while doing a manual copy to new book and
saving it.
Modify to suit.

Sub Macro6()
'
' Macro6 Macro
' Macro recorded 7/30/2009 by Donald B. Guillett
'

'
Sheets("Sheet1").Select
Sheets("Sheet1").Copy
ActiveWorkbook.SaveAs Filename:="C:\yourfolderl\yourfilename.xls",
FileFormat:= _
xlNormal, Password:="", WriteResPassword:="",
ReadOnlyRecommended:=False _
, CreateBackup:=False
End Sub
 
I'm not sure what you mean by em? You can save the active sheet as a
separate workbook by something like this:

Sub SaveSheet()
Dim myFile as String
ActiveSheet.Copy
myFile=Application.GetSaveAsFilename
ActiveWorkbook.SaveAs myFile
End Sub

This will prompt you for the filename and location.
 
Very helpfull Shane. Thanks.
What I am asking is that each person info is upon there titled worksheet I
would like to be able send an em to each of the 15 people, the same way that
you and I are communicating directly from the excell workbook. What I did
was copy and past than save each person info, then open an attachment in my
outlook and em/send to the person it is for, I had to do this for 15 people
so as you may imagine it took some doing, I just want to click on the
worksheet, and instead of copying, just send - to the person it is for, this
is an option in my word program and I thought excell would have the same
option.

Best regards
Ali
 
Shane em = Email

Ali said:
Very helpfull Shane. Thanks.
What I am asking is that each person info is upon there titled worksheet I
would like to be able send an em to each of the 15 people, the same way that
you and I are communicating directly from the excell workbook. What I did
was copy and past than save each person info, then open an attachment in my
outlook and em/send to the person it is for, I had to do this for 15 people
so as you may imagine it took some doing, I just want to click on the
worksheet, and instead of copying, just send - to the person it is for, this
is an option in my word program and I thought excell would have the same
option.

Best regards
Ali
 
Back
Top