system
June 29, 2004, 9:23pm
1
Is there any way to save my sectioned report into multiple PDFs? I have one report that is sectioned by a plan number. There are about 50 plans, so I want to save each section as a separate PDF. Any thoughts? VBA? Examples?
Thanks!
Jen
jenP (BOB member since 2004-06-16)
system
June 29, 2004, 9:27pm
2
For starters look at this code from Integra Solutions.
Moved to SDK forum.
Andreas (BOB member since 2002-06-20)
system
October 30, 2007, 8:19pm
3
Hi andreas,
I can’t find the code as the link fails.
any alternate.
thanks
peter
boxir2_p (BOB member since 2006-10-19)
system
October 30, 2007, 8:30pm
4
Read these posts
You will also find another (similar) example here on the Integra Solutions site .
I’d also like to offer my own version (attached, and also based on the Island Resorts Marketing demo universe). I’ll paste the code here as well. This version runs after a refresh, and saves the file as .rep with the name of each filtered value appended to the original filename:
Private Sub Document_AfterRefresh()
Dim Vars As DocumentVariables
Dim FileName As String
Dim i As Long
Set Vars = Thi…
[Moved into Scripting since VBA was the solution- RM]
I have a report that has that is sectioned by city (say 50). What we have done in the past is the use a VB macro that splits the report into X number of HTML files named Y (where X= # of sections and Y = name of city/section). As a result, we have 50 HTML files each named by the section e.g. boston.html, chicago.html, etc.
The new requirement is to save the sections as PDF e.g. boston.PDF and chicago. I hear that that BO does not have th…
.
haider (BOB member since 2005-07-18)
system
October 30, 2007, 8:49pm
5
Updated version of the link:
http://www.integrasolutions.net/library_downloads.htm#architecture
Dave Rathbun (BOB member since 2002-06-06)