This is probably very easy, but I can't see how you would do this...
I have a table that is used as a source table for a report. The table contains percentage values. In the report, I would like to display percentage values less than zero with parentheses around them. I can change the color, format etc. but I'm not sure how you would enclose a particular field in this way.
e.g. -5.6% becomes (5.6%)
Create a query and place the numeric field in the query grid now in the column to the right of that type this (
where 'pcent' represents your field name). You could then base your report on the query (obviously you would add other fields from your table to do that.
The calculated column strPercent then becomes available in your report as a string value in addition to your numeric value so you have the best of both worlds
- strPercent: "(" & CStr([pcent]) & "%)"
Regards
Jim :)