Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
All brackets are closed in this string, not sure what is wrong here, continuing to get expression error ')' expected
=if((type='X' or type='Y') and Level2!='Z' and InsightSentiment<=X' and Score<='Y', Level3)
I want to display Level 3 if type is X or Y, sentiment and score are less than X and Y, and as long as Level 2 is not Z.
Thanks
great! can you mark my answer as Solution to your question?
Error message always can't tell the exact issue. Most of the time it is indicative; you have to debug and find the real issue. Here it could be just a missing quote (in red below):
=if((type='X' or type='Y') and Level2!='Z' and InsightSentiment<='X' and Score<='Y', Level3)
Thank you for your response, unfortunately there is still an error
Check if there are spaces between the separate literals. Could you post a screenshot of the error (with the entire expression)?
Please see below!
I found the problem; try with this:
=if((type='X' or type='Y') and Level2<>'Z' and InsightSentiment<='X' and Score<='Y', Level3)
Please note you are missing ' before X' and not equal must be <> and not 1=
Let me know if works.
try to replace != with <>
Great, thank you that works!!
great! can you mark my answer as Solution to your question?