Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Send As PDF Attachment

Hi

I would like to send a single page from a work book that multiple sheets as
a PDF. Is this possible?

At the moment when i attempt to send by PDF it sends the entire work book.
As i said i would just like to send one page from a sheet.

Is this possible?

Thanks guys.

Adam
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,123
Default Send As PDF Attachment

Excel 2007 ?

Try my add-in
http://www.rondebruin.nl/mail/add-in.htm

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"SnackBar" wrote in message ...
Hi

I would like to send a single page from a work book that multiple sheets as
a PDF. Is this possible?

At the moment when i attempt to send by PDF it sends the entire work book.
As i said i would just like to send one page from a sheet.

Is this possible?

Thanks guys.

Adam

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Send As PDF Attachment

Yes Excel 2007

"Ron de Bruin" wrote:

Excel 2007 ?

Try my add-in
http://www.rondebruin.nl/mail/add-in.htm

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"SnackBar" wrote in message ...
Hi

I would like to send a single page from a work book that multiple sheets as
a PDF. Is this possible?

At the moment when i attempt to send by PDF it sends the entire work book.
As i said i would just like to send one page from a sheet.

Is this possible?

Thanks guys.

Adam


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,123
Default Send As PDF Attachment

You can use the add-in or use this code example
http://www.rondebruin.nl/pdf.htm



--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"SnackBar" wrote in message ...
Yes Excel 2007

"Ron de Bruin" wrote:

Excel 2007 ?

Try my add-in
http://www.rondebruin.nl/mail/add-in.htm

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"SnackBar" wrote in message ...
Hi

I would like to send a single page from a work book that multiple sheets as
a PDF. Is this possible?

At the moment when i attempt to send by PDF it sends the entire work book.
As i said i would just like to send one page from a sheet.

Is this possible?

Thanks guys.

Adam


  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Send As PDF Attachment

Should i use the code in a Macro? So it literaly just sends the active sheet?
Could i tweak the code to just send the first page of the sheet?

Never really dont anything as complex as that before but it looks good.
Thank you for the help.



"Ron de Bruin" wrote:

You can use the add-in or use this code example
http://www.rondebruin.nl/pdf.htm



--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"SnackBar" wrote in message ...
Yes Excel 2007

"Ron de Bruin" wrote:

Excel 2007 ?

Try my add-in
http://www.rondebruin.nl/mail/add-in.htm

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"SnackBar" wrote in message ...
Hi

I would like to send a single page from a work book that multiple sheets as
a PDF. Is this possible?

At the moment when i attempt to send by PDF it sends the entire work book.
As i said i would just like to send one page from a sheet.

Is this possible?

Thanks guys.

Adam




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Send As PDF Attachment

Hi Ron

Code is fantastic! Thank you again.

In your notes it says it is easy to change it to send a range, how would i
go about doing this?

Kind Regards

Adam

"Ron de Bruin" wrote:

You can use the add-in or use this code example
http://www.rondebruin.nl/pdf.htm



--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"SnackBar" wrote in message ...
Yes Excel 2007

"Ron de Bruin" wrote:

Excel 2007 ?

Try my add-in
http://www.rondebruin.nl/mail/add-in.htm

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"SnackBar" wrote in message ...
Hi

I would like to send a single page from a work book that multiple sheets as
a PDF. Is this possible?

At the moment when i attempt to send by PDF it sends the entire work book.
As i said i would just like to send one page from a sheet.

Is this possible?

Thanks guys.

Adam


  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,123
Default Send As PDF Attachment

Hi Adam

If you want to send the first page

Change

ActiveSheet.ExportAsFixedFormat _
Type:=xlTypePDF, _
Filename:=FilenameStr, _
Quality:=xlQualityStandard, _
IncludeDocProperties:=True, _
IgnorePrintAreas:=False, _
OpenAfterPublish:=False


To

ActiveSheet.ExportAsFixedFormat _
Type:=xlTypePDF, _
Filename:=FilenameStr, _
Quality:=xlQualityStandard, _
IncludeDocProperties:=True, _
IgnorePrintAreas:=False, _
From:=1, _
To:=1, _
OpenAfterPublish:=False


See also the other examples in the macros above the mail macro

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"SnackBar" wrote in message ...
Hi Ron

Code is fantastic! Thank you again.

In your notes it says it is easy to change it to send a range, how would i
go about doing this?

Kind Regards

Adam

"Ron de Bruin" wrote:

You can use the add-in or use this code example
http://www.rondebruin.nl/pdf.htm



--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"SnackBar" wrote in message ...
Yes Excel 2007

"Ron de Bruin" wrote:

Excel 2007 ?

Try my add-in
http://www.rondebruin.nl/mail/add-in.htm

--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm


"SnackBar" wrote in message ...
Hi

I would like to send a single page from a work book that multiple sheets as
a PDF. Is this possible?

At the moment when i attempt to send by PDF it sends the entire work book.
As i said i would just like to send one page from a sheet.

Is this possible?

Thanks guys.

Adam


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
Cant Send Email Attachment Dan DeCoursey Excel Discussion (Misc queries) 2 August 13th 07 12:44 PM
Help to Send as attachment. Pools New Users to Excel 7 July 2nd 06 03:03 AM
Send as Attachment [email protected] Excel Discussion (Misc queries) 0 June 7th 06 06:50 PM
My send to in excel/word does not offer send as attachment Mstink Excel Discussion (Misc queries) 11 March 16th 06 02:49 PM
send as attachment confused in NC Excel Discussion (Misc queries) 1 July 19th 05 06:02 PM


All times are GMT +1. The time now is 01:01 PM.

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"