Please tell me if this makes any sense at all. The following is a formula for a text field called @credit_total in a 6.0 report. While customer_file.credit_total is a numeric, the formula field has to be a text field in order to populate it with asterisks if the field is too large. I used the exact same formula in an 8.5 report. The 6.0 report has commas in the field where applicable, although how that happened in a text field I'm not sure. These commas do not appear in the 8.5 report. On both reports in design mode, the 'comma' on the tool bar is blocked out. I see nothing in 'format field' that could add commas. What am I missing?
If {CUSTOMER_FILE.CREDIT_TOT} > 999999999999 Then
ReplicateString ("*",15 )
Else
'$' + ToText ({CUSTOMER_FILE.CREDIT_TOT}, 2)
Your ASAP help is appreciated.
If {CUSTOMER_FILE.CREDIT_TOT} > 999999999999 Then
ReplicateString ("*",15 )
Else
'$' + ToText ({CUSTOMER_FILE.CREDIT_TOT}, 2)
Your ASAP help is appreciated.