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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

bold line on every second record readed

Status
Not open for further replies.

pgtek

Programmer
Sep 28, 2001
1,180
CA
hi,
I'm running crystal 8.5 and heres my problem

I have a field call Last_Name, First_Name in detail a
and in detail b only a line now
they want the line to be bold on every second record read

like they want to undeline the record but only the line on every second record read

Is this possible in crystal 8.5?????????

thank you

PG
 
Perhaps I jumped the gun here, are you looking to have a line under every row, and have alternating lines bold?

Use the same logic as Naith or dgillz supplied in your other post (I hadn't seen it when I posted).

If you only want a line every other row, use the above.

-k kai@informeddatadecisions.com
 
hi
thanks for the reply.
I tried the other formula and did not work.
I found a other way to execute it
i created a formula call Bold_Line

and inserted "-------------------------------"
and save it

i inserted this formula in detail b and format
font style X2
to
If Remainder(Recordnumber,2) = 0
Then CrBold
Else CrRegular

and it works fine

thanks
pg
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top