Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hello, I am trying to format a

Status
Not open for further replies.

VANDY3

Programmer
Mar 27, 2003
6
IN
Hello,
I am trying to format a report in which I need to skip a line after every even data line. And I need to underline certain columns of every odd line.
So I define a virtual field(FN) containing 0 for odd lines
and 1 for even lines.
Then I use styling as
TYPE=DATA,
STYLE=SKIP-LINE,
WHEN=FN EQ 1,
$
But this doesn't solve the problem.
Can there be some alternative.
The report is a simple print command of various fields
and the output format is pdf.

Regards.
 
You can use the statement:
Code:
ON FN SKIP-LINE
to provide a line skip on every detail-line.
With a stylesheet you can provide a underline. However, a underline on the web suggests that this is a hyperlink.
Frank van de Kant
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top