Error Received in Flow when creating a formula resource The formula expression is invalid: Incorrect number of parameters for function 'IF()'. Expected 3, received 4
IF({!$Record.Estimated_Net_Profit_MLS_Wholesale__c}<= 6000,500, IF(AND({!$Record.Estimated_Net_Profit_MLS_Wholesale__c}>6000,{!$Record.Estimated_Net_Profit_MLS_Wholesale__c}<= 24000),{!$Record.Estimated_Net_Profit_MLS_Wholesale__c}*0,08, IF(AND({!$Record.Estimated_Net_Profit_MLS_Wholesale__c}>24000,{!$Record.Estimated_Net_Profit_MLS_Wholesale__c}<= 32000),{!$Record.Estimated_Net_Profit_MLS_Wholesale__c}*0.1, IF(AND({!$Record.Estimated_Net_Profit_MLS_Wholesale__c}>3200,{!$Record.Estimated_Net_Profit_MLS_Wholesale__c}<=40000),{!$Record.Estimated_Net_Profit_MLS_Wholesale__c}*0.12, IF(AND({!$Record.Estimated_Net_Profit_MLS_Wholesale__c}>40000,{!$Record.Estimated_Net_Profit_MLS_Wholesale__c}<=46667),{!$Record.Estimated_Net_Profit_MLS_Wholesale__c}*0.15, IF({!$Record.Estimated_Net_Profit_MLS_Wholesale__c}>46667, 7000, 0 ) ) ) ) ) )
Keep receiving this error, I have double checked all true false logic
{!$Record.Estimated_Net_Profit_MLS_Wholesale__c}*0,08,looks fishy. Why do you bother multiplying by zero.You meant to put a decimal point but Salesforce treated the comma as next
IFargument separator?