Forum Discussion
Anonymous
4 years agoNot applicable
IF OR DAX statement giving error
I wrote the below DAX statement but it is showing me error " " My DAX statement is : Column 3 = IF('Query6'[TICKET_STATE] = "NEW" || "OPEN", "COMPLETED", "REJECTED") Can someone please ...
- 4 years ago
Use this
= IF('Query6'[TICKET_STATE] = "NEW" || 'Query6'[TICKET_STATE] = "OPEN", "COMPLETED", "REJECTED")
Anonymous
4 years agoNot applicable
Thank you for your help. It worked for me. 🙂
Vijay_A_Verma
4 years agoMost Valuable Professional
You marked wrong post as answer. Could you please correct it?