i have a table with this fields
FIELD TYPE (description)
sale currency (sometimes could be 0)
cash currency (sometimes could be 0)
Creditcard currency
adminfees currency
downpayment currency
and i want to add a calculated field called pending which would be adminfees+downpayment-cash-creditcard but when i try to write the formula i wrote it like this
iif(adminfees+downpayment-cash-creditcard<=0,0,adminfees+downpayment-cash-creditcard)
i get the error the field could not be saved because its result is null or binary its not supported by the server
i would greatly appreciate if anyone could help