You need to sign in to do that
Don't have an account?

Using an "If.And" formula to calculate a commission value
Trying to come up with a way to use the If And combination in a calculation. I have the following
IF(
And (Buyer_Present__c = false,
( CONTAINS(Commission__r.Name,"Ticket Commission")),
(125 - Commission__r.Amount_to_Pay__c),
0)
)
All I am trying to get it to do is calculate the difference the dollor value of (125 - Commission__r.Amount_to_Pay__c) when those conditions are true.
IF(
And (Buyer_Present__c = false,
( CONTAINS(Commission__r.Name,"Ticket Commission")),
(125 - Commission__r.Amount_to_Pay__c),
0)
)
All I am trying to get it to do is calculate the difference the dollor value of (125 - Commission__r.Amount_to_Pay__c) when those conditions are true.
You can try below formula
OR
All Answers
You can try below formula
OR