Can help you correct your formula if you post it but in general when you make a formula you need to define what happens if the IF is not true.
For example you might have a Formula like
IF([Eligible for Reimbursement]=true, [rate] * [mileage claimed])
The formula above is silent if [Eligible for Reimbursement] is false then the result is null. Bernal and QuickBase behaves a bit like @ n/a in Excel - that uses that in the formula also becomes @ n/a.
so you have two choices. Either define what happens when the formula is not true.
IF([Eligible for Reimbursement]=true, [rate] * [mileage claimed], 0)
​​​or else you can make your formula messy like this.
Nz([Hotel expenses]) + Nz([Flat rate]) + Nz(Mileage Cost total])
but I personally hate to bugger up my aps full of Nz's. That means to trat null as zero.
If the components of your formula are the result of summary fields, then edit the field properties of the summary fields to checkbox the setting for "treat blank as zero".
------------------------------
Mark Shnier (Your Quickbase Coach)
mark.shnier@gmail.com
------------------------------