You need to sign in to do that
Don't have an account?
Skie Ocasio
HELP: I need help with a Formula that is not working......
I am trying to create a field that deducts the "quoted amount" from the "transaction amount" only when the custom object "vendor" Vendor compnay is is Prominent Tickets. Can someone assist me?
Quoted_Amount__c - Transaction_Amount__c && Vendor__r.Name = Prominent Tickets
Quoted_Amount__c - Transaction_Amount__c && Vendor__r.Name = Prominent Tickets
Please give it a try.
IF(Vender__r.Name == 'Prominent Tickets',Quoted_Amount__c - Transaction_Amount__c,false)
All Answers
Please give it a try.
IF(Vender__r.Name == 'Prominent Tickets',Quoted_Amount__c - Transaction_Amount__c,false)
IF(Vendor__r.Name =='Prominent Tickets',Quoted_Amount__c - Transaction_Amount__c,NULL)
Thanks,
Parker