ste4en
Technical User
- Aug 1, 2001
- 69
I am trying to add up the data in a field (qty), which is mostly a text string but also has null values. I cannot change the field type in the database.
So I am trying to change the null values to a text zero, then converting the text to a number and summing.
Creating formula field RidNull:
if isnull(qty) then "0" else (qty)
and then sumqty:
sum( tonumber(qty))
But it is not working and how can I do this in one formula.
Thanks
So I am trying to change the null values to a text zero, then converting the text to a number and summing.
Creating formula field RidNull:
if isnull(qty) then "0" else (qty)
and then sumqty:
sum( tonumber(qty))
But it is not working and how can I do this in one formula.
Thanks