Focal Point
BY display in PDF

This topic can be found at:
https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/2471058331

May 06, 2005, 01:40 PM
Kamesh
BY display in PDF
trying to display the BY field in my report. It shows BY fieldname correctly but when the corresponding value for the BY field goes to new line then BY field prints there too.

EX:

Page1
1 xxxxxxx
xxxxxxx
2 xxxxxxx
xxxxxxx
Page2
2 xxxxxxx
3 xxxxxxx


I dont want 2 to print in Page2 as we already printed that in Page1. This is happening in PDF.
May 06, 2005, 02:04 PM
dwf
How about this, where you're printing Y by X?

DEFINE FILE XYZ
XFIELD/A2 = IF X EQ LAST X THEN ' ' ELSE X;
END

TABLE FILE XYZ
PRINT XFIELD Y
END

Note that this only works if the file is already sorted by X. If it is not, then this might work:

TABLE FILE XYZ
PRINT
COMPUTE
XFIELD = IF X EQ LAST X THEN ' ' ELSE X;
Y
BY X NOPRINT
END

If that doesn't work, then create a hold file sorted by X and implement the first idea.
May 06, 2005, 02:09 PM
<JG>
another alternative is to make the BY field a NOPRINT and do
ON FIELD SUBHEAD
"<FIELD"
May 06, 2005, 02:11 PM
reFOCUSing
Have you tried using 'ON byfieldname NOSPLIT'?
May 06, 2005, 02:46 PM
Kamesh
CurtisA, NOSPLIT works fine. Thanks a lot.
May 06, 2005, 02:51 PM
<JG>
NOSPLIT only works if your data for a particular BY field all fits on one page.
If you have more than one page of data it will print the BY field on the new page.