First, your example code doesn't work really at all. I'm guessing you didn't copy directly from your working code for simplicity's sake, but I get what you're going for. I think you need to repeat the table tags inside of the cfdocumentitem type="header" area. Here's the code that worked for me:
<cfdocument format = "PDF" filename="1.pdf" overwrite = "yes" unit = "in" FONTEMBED="yes" pagetype="letter" orientation = "landscape" > <cfdocumentitem type="header"> <table width="85%" border="0"> <tr> <td width="20%">1</td> <td width="20%">2</td> <td width="20%">3</td> <td width="20%">4</td> <td width="20%">5</td> </tr> </table> </cfdocumentitem> <cfloop index="i" from="1" to="200" step="1"> <table width="85%" border="0"> <tr> <td width="20%">a</td> <td width="20%">b</td> <td width="20%">c</td> <td width="20%">d</td> <td width="20%">e</td> </tr> </table> </cfloop> </cfdocument> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http://www.fusionauthority.com/quarterly Archive: http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:248758 Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

