The GROUP in this example steps through the records of a CSV file, merging the data into fields in a print file. Caching the static elements of the pages is not a requirement, but if the printer is capable of storing overlays, it improves efficiency.

<IDF UNITS="INCHES" PLEX= "SIMPLEX" PAPER = "A4" FONT = "Times New Roman" POINTSIZE = "12">
<GROUP REPEAT="YES">

<PAGE>

<INCLUDE FILENAME = "c:\escapee\users.csv" PAGE = "NEXT"/>

<INCLUDE FILENAME = "c:\escapee\letter.lsh" PAGE="1" CACHE="YES"/>

<TEXT BOUNDS ="ADDRESS" BLANKLINES="NO">
<?EE TITLE?> <?EE FIRSTNAME?> <?EE NAME?>
<?EE COMPANY?>
<?EE ADDR1?>
<?EE ADDR2?>
<?EE ADDR3?>
<?EE ADDR4?>
<?EE TOWN?>
<?EE COUNTY?>
<?EE POSTCODE?>
<?EE COUNTRY?>
</TEXT>

<TEXT BOUNDS =" SALUTATION"><?EE TITLE?> <?EE NAME?></TEXT>

</PAGE>

<PAGE>
<INCLUDE FILENAME = "c:\escapee\letter.lsh" PAGE="2" CACHE="YES"/>
</PAGE>

</GROUP>

</IDF>