4
In the report I’m doing, I’ve managed to alternate colors by doing the following: Access to the Menu: Crystal Reports
- Report
- Section Expert
Select the section
Details
and click on the tab Color
Click on the formula button x-2
, will Bir the formula editor
Put the following code:
if (RecordNumber mod 2) = 0 then crNoColor else crSilver
The problem is that the gray color (crSilver
) It’s too dark, I need to get a lighter gray, which doesn’t run far from white.
I wonder if there is any way to customize colors, and assign names to them and later use these names in Crystal Reports?
Or if there is a list of colors with their respective names on Crystal Reports
?
Thanks @Motta! I used "Color(223,223,223)" and it was the way I wanted it. Thanks brother!
– Daniel dos Santos