<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Timber engineering / VBA / Excel</title>
	<atom:link href="http://timbereng.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://timbereng.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Fri, 17 Jul 2009 09:29:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='timbereng.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Timber engineering / VBA / Excel</title>
		<link>http://timbereng.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://timbereng.wordpress.com/osd.xml" title="Timber engineering / VBA / Excel" />
	<atom:link rel='hub' href='http://timbereng.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Problem printing multiple worksheets to one pdf file</title>
		<link>http://timbereng.wordpress.com/2009/07/17/problem-printing-multiple-worksheets-to-one-pdf-file/</link>
		<comments>http://timbereng.wordpress.com/2009/07/17/problem-printing-multiple-worksheets-to-one-pdf-file/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 09:07:54 +0000</pubDate>
		<dc:creator>markuswallner</dc:creator>
				<category><![CDATA[Excel]]></category>

		<guid isPermaLink="false">http://timbereng.wordpress.com/?p=3</guid>
		<description><![CDATA[Solution for the problem printing multiple excel sheets to one pdf file: Set all sheets to the same printquality (dpi)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=timbereng.wordpress.com&amp;blog=8612035&amp;post=3&amp;subd=timbereng&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Problem</strong>:<br />
When it comes to printing of multiple Sheets from a Microsoft Excel Workbook to a pdf file using any pdf-printer writer, Excel seems to behave randomly. Sometimes all selected sheets are sent to the printer as one job and sometimes each sheet is sent as an individual sheet leading to multiple pdf files.</p>
<p><strong>Solution</strong>:<br />
Excel prints in individual print jobs if the print quality differs from one sheet to the next. As soon as the print quality is the same, all sheets are printed as one print job.</p>
<p><strong>Manually</strong>:<br />
Select the sheets and in the print setup press OK. This sets the same print quality for all selected sheets. It also sets all other setup options.</p>
<p><strong>Using VBA</strong>:<br />
It&#8217;s relatively easy to set the print quality for all sheets in a workbook. The following code example copies the print quality of the first sheet to all in the workbook.</p>
<pre>''
' Printing sheets is only about the PrintQuality Settings !
Public Sub setCommonPrintQuality()

    Dim ws As Worksheet
    Dim firstPrintquality

    Dim isfirst As Boolean
    isfirst = True

    For Each ws In ActiveWorkbook.Worksheets
        With ws.PageSetup
            If isfirst Then
                firstPrintquality = .PrintQuality
                isfirst = False
            Else
                .PrintQuality = firstPrintquality
            End If
        End With
    Next
End Sub</pre>
<p>The manual solution is also found at:<br />
<a href="http://www.novapdf.com/kb/printing-an-entire-excel-workbook-to-a-single-pdf-file-135.html">http://www.novapdf.com/kb/printing-an-entire-excel-workbook-to-a-single-pdf-file-135.html</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/timbereng.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/timbereng.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/timbereng.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/timbereng.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/timbereng.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/timbereng.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/timbereng.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/timbereng.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/timbereng.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/timbereng.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/timbereng.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/timbereng.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/timbereng.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/timbereng.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=timbereng.wordpress.com&amp;blog=8612035&amp;post=3&amp;subd=timbereng&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://timbereng.wordpress.com/2009/07/17/problem-printing-multiple-worksheets-to-one-pdf-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/89bdc862ff3ef07861620ebfc5d2cd27?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">markuswallner</media:title>
		</media:content>
	</item>
	</channel>
</rss>
