I am looking to create a formula the adds together the amounts in 2 seperate fields and puts it in a new custom field. Any help would be great!
Thanks,
David
답변 2개
David,
You can create a Formula Field[1] to do that! Kinda like this:
- Formula Field Label: Sum of Two Fields
- Formula Field Return Type: NUMBER
- Formula:
BLANKVALUE(Field_1__c, 0) + BLANKVALUE(Field_2__c, 0)
[1]:
Formula Field