Forum Discussion
elmarcinpbi
9 years agoFrequent Visitor
Using Null in "OR" Filter in Complex Calculate Measure
I am attempting to write a calculate measure in Power BI desktop that determines if a person was enrolled in program during a given month. When a person is enrolled, the Enrolled Date is set, and th...
- 9 years ago
You have an extra closing ) before the || operator
You have 3 there when they should be 2 ))
Sean
Community Champion
9 years agoYou have an extra closing ) before the || operator
You have 3 there when they should be 2 ))
elmarcinpbi
9 years agoFrequent Visitor
thank you, That fixed the syntax.
Since this table can have records that have enrolled date and disenrolled date with enrolled date, both, or none populated, I wanted to restrict the results set to only those that have ever been enrolled.
I created a calculated column that set a flag if Enrolled Date <> Blank() and used that as a filter in the visual. Working now.