
Hi
I have two existing fields
Opportunity Target Premium and Amount
I want to create a formula called 'Target Sum' which pulls through the Amount__c premium through but if its 0 or blank then pulls through the opportunity_target_premium__c field.
Can anyone help?
Thanks
Tina
3 answers
Hi Tina,
You can use formula as below
IF(
OR(
ISBLANK(Amount__c ),
Amount__c == 0
),
opportunity_target_premium__c,
Amount__c
)