Forum Discussion
- QuickBaseCoachDQrew CaptainTry this
IF(
[carrier] = "Carrier x"
or
[carrier] = "Carrier y"
or
[carrier] = "Carrier z", [monthly premium]*[health plan commission]) - QuickBaseCoachDQrew Captaini should also mention that the above formula will calculate to null if its not either of those carriers.
So its is probaly betetr to use
Try this
IF(
[carrier] = "Carrier x"
or
[carrier] = "Carrier y"
or
[carrier] = "Carrier z", [monthly premium]*[health plan commission],0)
or else if you run a total of the column it will be blank. - DavidDziewitQrew TraineeThank you! I'm testing right now.