You need to sign in to do that
Don't have an account?
formula text and if condition: Syntax error
Hi all,
I would need help with this formula. I get a message: Syntax error. Any idea, please?
IF ( PotentialCOMAPABudget__c < 200.000,"Bajo",
IF ( PotentialCOMAPABudget__c > 200.000 < 1.000.000, "Medio",
IF ( PotentialCOMAPABudget__c > 1.000.000, "Alto",
IF ( PotentialCOMAPABudget__c > 5.000.000, "Key Account", null
)
)
)
)
I would need help with this formula. I get a message: Syntax error. Any idea, please?
IF ( PotentialCOMAPABudget__c < 200.000,"Bajo",
IF ( PotentialCOMAPABudget__c > 200.000 < 1.000.000, "Medio",
IF ( PotentialCOMAPABudget__c > 1.000.000, "Alto",
IF ( PotentialCOMAPABudget__c > 5.000.000, "Key Account", null
)
)
)
)
All Answers
try this:--
IF ( Marks__c < 200.000,"Bajo",
IF ( Marks__c > 200.000 && Marks__c < 1000.000, "Medio",
IF ( Marks__c > 1000.000, "Alto",
IF ( Marks__c > 5000.000, "Key Account", null
)
)
)
)
Thanks,
Ankur Saini
I am afraid that´s it doesn´t work. The formula doesn´t update the values.
Any help??
Many thanks
Now, it works perfectly
Regards,