I am trying to convert a string field (100%) in the database to a number. I am also looking to see if this field isnull then make it 0. I tried the following formula:
if isnull({Command.Percentage}) then 0 else
ccur({Command.Percentage})
It gives me the error message "The string is non-numeric"
I am using Crysal 10 with a SQL database. The actual field has % in it. ie: 100%
if isnull({Command.Percentage}) then 0 else
ccur({Command.Percentage})
It gives me the error message "The string is non-numeric"
I am using Crysal 10 with a SQL database. The actual field has % in it. ie: 100%