Forum Discussion
FILIPKACZMAR
Advocate I
3 years agoProblems with if funciotn
Hello everyone! I want to make a checklist in my Power BI dashboard. I have got column called status in my data. I want to sort it in another column by "True" and "False". I wrote code: if ( ...
- 3 years ago
try
'SQA list 2022'[Status] IN { "Completed", "Waived", "Cancelled", "Missed" }that will return true if the status is one of those values, false otherwise
FILIPKACZMAR
Advocate I
3 years agoThank you!