I am displaying values from a specific column in a table, say TableP.
This column has some invalid data that I want to filter out.
Using a DAX measure,
Measure = IF ( 'TableP'[columnValue] <> "[email protected]", 'TableP'[columnValue] )
So with the above code, I am getting an error of
A single value cannot be determined.
So clearly wrong approach. Would appreciate some guidance on best practices :)
Is this the best way to solve this issue