Reputation: 147
Just a quick question regarding conditional formatting/Expressions. I have a form which holds information (Invoice Date, Payment terms, Payment Due, Days Left, and Paid).
Payment due adds 30 days on to the Invoice date and Days left shows us how many days left that it has.
My question is how can I make it so that when the tick box "Paid" is ticked then it sets the Days Left to 0 or Blank. rather than continuously counting down.
Upvotes: 0
Views: 42
Reputation: 21370
Could use an IIf() to conditionally adjust DaysLeft based on value of checkbox.
=IIf([Paid], 0, days left calc here)
Upvotes: 1