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

The formula expression is invalid: Syntax error. Found ',' on PB
Hello All,
Getting the error "The formula expression is invalid: Syntax error. Found ','" on PB when i used the formula expression.
Snippet:
Thanks,
VSK98
Getting the error "The formula expression is invalid: Syntax error. Found ','" on PB when i used the formula expression.
Snippet:
IF([Object__c].amount__c <> null, [Object__c].amount__c ,0)
Thanks,
VSK98
I have always seen null specified as 'NULL'. If this doesn't help, you can try ISBLANK([Object__c].amount__c)
Anudeep
I agree with Anudeep.
But if you MUST check for null explicitly, you can use ISNULL just like Anudeep showed ISBLANK: Which would give you either... ...or: -----
But I think this one is the best:
It is in the form of... ...so it does the logic for you if you want to keep the original expression as long as it is not null.
Did you try what any of us suggested? If so, did it work?
Or did you do something else that worked?
Or do you still have the problem?
Please update.
Thanks!