I'm using CR 2008 with an Oracle 11G db as my data source. I have a requirement to format all negative values in red and using parentheses instead of a negative(-)sign. This is easy to accomplish with numeric fields, but I'm having problems with numeric text fields when displaying the report in Infoview. I have an existing numeric text formula:
If ({COMPSTATEMENT.T1OBJUNITTYPE2} = "PERCENT") Then
ToText({COMPSTATEMENT.T1OBJVALUE2} * 100) + "%"
else
if {@F_Territory1Measure}="Qualified Leads" then ToText({COMPSTATEMENT.T1OBJVALUE2},0)else
ToText({COMPSTATEMENT.T1OBJVALUE2})
If the value returned is negative, the formatting defaults to the setting in the Options menu in CR. I changed it to the desired format, and now I see it displaying negative values correctly. However, if I upload it into Infoview, it uses the CMC default which is a negative sign. Is there any way to modify my formula to get the correct formatting so it will display correctly in Infoview?? Or how do I change the default numeric formatting in the CMC??
If ({COMPSTATEMENT.T1OBJUNITTYPE2} = "PERCENT") Then
ToText({COMPSTATEMENT.T1OBJVALUE2} * 100) + "%"
else
if {@F_Territory1Measure}="Qualified Leads" then ToText({COMPSTATEMENT.T1OBJVALUE2},0)else
ToText({COMPSTATEMENT.T1OBJVALUE2})
If the value returned is negative, the formatting defaults to the setting in the Options menu in CR. I changed it to the desired format, and now I see it displaying negative values correctly. However, if I upload it into Infoview, it uses the CMC default which is a negative sign. Is there any way to modify my formula to get the correct formatting so it will display correctly in Infoview?? Or how do I change the default numeric formatting in the CMC??