|
-
Aug 17th, 2005, 12:09 PM
#1
Thread Starter
Member
-
Aug 18th, 2005, 07:55 AM
#2
Re: Create email from partial workbook
Should be able to create a new workbook, add in a sheet. Set a range object to the whole of the source sheet. Copy it and paste into the new destination sheet. Repeat for how ever many you want.
Passwording etc, probably available too.
Something like:
Code:
dim wrk as workbook
dim shtSrc as worksheet, shtdest as worksheet
set wrk = application.workbooks.add
set shtDest = wrk.sheets.add
'...
Last edited by Ecniv; Aug 18th, 2005 at 08:00 AM.
Feeling like a fly on the inside of a closed window (Thunk!)
If I post a lot, it is because I am bored at work! ;D Or stuck...
* Anything I post can be only my opinion. Advice etc is up to you to persue...
-
Aug 21st, 2005, 03:42 AM
#3
Thread Starter
Member
Re: Create email from partial workbook
Please can you expand on above as I am unsure how this works.
How does excel know which workbook is being referenced?
How to I copy across multiple sheets?
How do I attach newly created workbook to an email. As I see it the new workbook will have no vba.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|