I haven't tried the code but I would have thought you'd end up with
(typically) three additional empty sheets. Of course those could be deleted
but could do this -
Sheets(Array("Sick Graph", "Accident Graph")).Copy
with ActiveWorkbook
.Saveas "NameForTheEmail.xls"
s = .Fullname
.SendMail "adresss1"
.Close false
End With
Kill s
I think it'd better though to follow Ron de Bruin's example in the link
provided by JLGWhiz
To the OP - If those sheets are chart-sheets, or if one or both are
worksheet(s) but do not include all chart source data, you'll need to remove
any links to data in the original workbook before mailing.
Regards,
Peter T
> ' STANDARD MODULE
> Option Explicit
[quoted text clipped - 27 lines]
> > Is it possible please ( Sending 2 worksheets from 1 workbook )
> > Thankyou.
Steved - 12 Mar 2008 19:04 GMT
Hello from Steved
I thankyou all for your reponses.
> I haven't tried the code but I would have thought you'd end up with
> (typically) three additional empty sheets. Of course those could be deleted
[quoted text clipped - 50 lines]
> > > Is it possible please ( Sending 2 worksheets from 1 workbook )
> > > Thankyou.