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
Dee511Dee511 

Making one field equal to another through Formula Field


I'd like to create a formula field that update a custom field Net Sales with the TM Total Amount if the Created date is equal to today. I am unable to create a workflow or process builder because the Net Sales Field is already formula field with different criteria. 

IF (Created_Date__c=Today()), Net_Sales_Field__c = TMTotalAmount__c

Any help would be greatly appreciated.
 
Maharajan CMaharajan C
Dee then you have update the Net_Sales_Field__c formual like below.
 
IF (Created_Date__c=Today(), TMTotalAmount__c, Place the existing Net_Sales_Field__c formula  here)


Thanks,
Maharajan.C
Dee511Dee511
Thank you. However, I need the formula to update Net_Sales_Field__c with the TMTotalAmount__c