You need to sign in to do that
Don't have an account?
How to add numbers in formulas?
Hi - how to fix this formula? If record type is Cake, then make it 0. Then proceed to add up the Amounts 1-3.
IF(
RecordType.Name = "Cake",0,
(Amount_1__c +
Amount_2__c +
Amount_3__c)
IF(
RecordType.Name = "Cake",0,
(Amount_1__c +
Amount_2__c +
Amount_3__c)
Your formula looks correct according to the requirement posted.
What's the issue that you are facing ?
If record type is Cake, then exclude those values under that record type.
Then proceed to add up the Amounts 1-3 related to other record types.
IF(
RecordType.Name = "Cake",0,
(VALUE(Amount_1__c) +
VALUE(Amount_2__c) +
VALUE(Amount_3__c))
)
and if formula return type should be Number