function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Aaliya YusufzaiAaliya Yusufzai 

Creating a Formula Field when License Type is "New" add the Amount from "Total Amount" field

I'm trying to create a field if License Type (which is a formula field) equals New, then we should bring in a value from a Currency field "Total Amount"

Not sure how to do this.
Best Answer chosen by Aaliya Yusufzai
LBKLBK
Try this.
IF(License_Type__c = 'New', Total_Amount__c, 0)