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
InternIntern 

Amount times Probability only if Probability is less then 75% if not Commit Amount equals Amount

Commit Amount = Amount * Probability only if Probability < 75% if not Commit Amount = Amount
 
Any suggestions?
InternIntern
IF(ProbabilityFW__c < .75, ProbabilityFW__c * Amount, Amount)
 
This is what i came up with but i get a syntax error for the "." before the 75
InternIntern
>that fixed it
InternIntern
No it still does not work.