PC Review


Reply
Thread Tools Rate Thread

automate save as of excel-report to pdf-document.

 
 
sverre
Guest
Posts: n/a
 
      23rd Feb 2009
Hi,

I have inherited an excel-report which I would like to automate. Every day I
need to
save in pdf-format around 12 reports from 12 different selections in a
drop-down list (I am not sure it is a drop-down list but it looks like that).

Is it possible to automatically do the following: 1) Da a selection for each
possible selection in the drop-down list 2) Save it as a pdf-report and give
it the same name as the selection in the drop-down list. Save each report on
the desktop.

Automatic calculation is shut off in the workbook. I assume I need to tell
excel to turn it on during this procedure.


Many thanks in advance!

Sverre

 
Reply With Quote
 
 
 
 
marcus
Guest
Posts: n/a
 
      23rd Feb 2009
Hi Sverre

I have done something similar on PDF version 5 and it works well. It
assumes you are using a data Validation list for your drop down. It
Loops through the list in cell B5 and prints to pdf. You will need to
adapt this to suit your problem.

Take care

Marcus

Sub ValListLoop()

Dim rng As Range, cell As Range
Dim mycells As String
Dim PDFFileName As String

Set rng = Evaluate(ActiveSheet.Range("B5").Validation.Formula1)
For Each cell In rng
Application.Calculation = xlAutomatic 'turn calcs on
ActiveSheet.Range("B5").Value = cell.Value 'Change to suit
mycells = Range("B5").Value 'Change to suit
Sheets("Sheet1").Select 'Change to suit
Application.ActivePrinter = "Adobe PDF on Ne01:" 'Change path
Let PDFFileName = "C:\" & mycells & ".pdf" ' change to desktop
path
SendKeys PDFFileName & "{ENTER}", False
ActiveWindow.SelectedSheets.PrintOut copies:=1
SFileName = Chr(34) & PDFFileName & Chr(34)
Next
Application.Calculation = xlManual 'turn calcs off
End Sub

 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
automate save and close of excel BINZA@ Microsoft Excel Discussion 3 24th Mar 2007 03:58 PM
Automate Excel report to place certain data into existing report? =?Utf-8?B?Q3JhaWcgSGFycmlzb24=?= Microsoft Excel Worksheet Functions 3 25th Jul 2006 01:54 PM
automate entries into document from a excel database =?Utf-8?B?RGVzaWduZXIgTGFkeQ==?= Microsoft Excel New Users 3 23rd Mar 2006 09:43 PM
using excel to automate word document =?Utf-8?B?a2VhdHM=?= Microsoft Access 2 11th Mar 2006 03:17 AM
Excel 2002 Automate shared workbook at close to save changes to new document tmerrifield Microsoft Excel Programming 0 27th Oct 2004 03:45 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:21 AM.