Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I want to use a formula where I have as result all values except one. I found that the syntax for different from is " -=".
I tried the next :
=if(Opportunity.Status-='On Hold',null(),Opportunity.Status) but this gives me " error in expression.
What's wrong ??
Thanks,
Guy
This syntax is for Set analysis.
For the if statement it is:
=if(Opportunity.Status<>'On Hold',null(),Opportunity.Status)
Rgds,
Sébastien
This syntax is for Set analysis.
For the if statement it is:
=if(Opportunity.Status<>'On Hold',null(),Opportunity.Status)
Rgds,
Sébastien
Sébastien,
Thanks, this works.
Kind regards,
Guy