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
JTPAdminJTPAdmin 

Evaluating 2 fields for usage in formula

How would I write the formula to evaluate two fields to determine which fields value to use.
 
For example:
 
If Amount = 0 then (AnnualAmount x (term/12) else (Amount x (term/12))
GraylabGraylab

Here is an example of a field I use:

 

(IF(  ISNULL( {!Bo_Monthly_Income__c} ) ,  {!Borrower_Annual_Income__c} /12 ,  {!Bo_Monthly_Income__c} )) +  {!Borrower_Additional_Income__c}