Skip to main content
Solved

Help with an IF AND statement, possible a rollup?

  • March 3, 2020
  • 2 replies
  • 43 views

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!

Best answer by Mohamed_Swella1

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

2 replies

Mohamed_Swella1
Forum|alt.badge.img+17

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


  • Author
  • Participating Frequently
  • March 3, 2020

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


Thanks Mo, that fixed it!