You need to sign in to do that
Don't have an account?

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?

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

>that fixed it

No it still does not work.