NicoVB Posted August 11, 2003 Posted August 11, 2003 I have a Crystal Report with some fields. But I want that when a field has a certain value like for example "Nico", I can highlight the row by setting it's text style value to BOLD. But how do you achieve this??? Quote Visit http://www.nico.gotdns.com Now ONLINE!
NicoVB Posted August 12, 2003 Author Posted August 12, 2003 No ideas?? Quote Visit http://www.nico.gotdns.com Now ONLINE!
NicoVB Posted August 14, 2003 Author Posted August 14, 2003 This can't be so difficult. Just a question about Crystal Reports Quote Visit http://www.nico.gotdns.com Now ONLINE!
KenpoMatt Posted August 27, 2003 Posted August 27, 2003 Open the report. You can do this in VS.Net or outside of the project if you have another version of CR. Find the field you want on the report in the designer window. Right click on it. Click Format > Font. Set the Style to Bold. Find the "Formula" button next to the "Style" drop down. The button has a picture of a pencil with "X-2" printed over it. Click the button to get the formula editor. In it type this: if [i]{your_field}[/i] = 'Nico' then 1 else 0 Don't forget: you must include the curly braces for data field names {} and the @ sign for parameter fields Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.