Mar 02, 2020 08:17 PM
Hello, I’m trying to do a formula that calculates commision due. I have the commission field, and I also have a ‘commision paid’ checkbox field.
Basically I want the commission owing field to calculate the commission if the paid field isn’t ticked yes.
Help please!
Solved! Go to Solution.
Mar 02, 2020 09:15 PM
Hi @czacza2007,
You can use this article to create your formula
Basically, it will be something like IF({Commission Paid} = 0, Commission, 0)
BR,
Mo
Mar 02, 2020 09:15 PM
Hi @czacza2007,
You can use this article to create your formula
Basically, it will be something like IF({Commission Paid} = 0, Commission, 0)
BR,
Mo
Mar 03, 2020 12:10 PM
Thanks Mo, that fixed it!