Forum Discussion
seanrpeters
2 years agoFrequent Visitor
Relational Operations
Hello,
I want to use the comparrison opperator == in order to filter out data in a measure. The values stored are Y or N, I want to include only the Y values in my measure like so:
NewHire = FILTER ( 'table', [YN] =='Y' )
This is obviously not the right way to do this, but how would I?
hi, seanrpeters
try below measureMeasure = FILTER( VALUES('Table'[Column1]),'Table'[Column1]="y")data look like below
table visual look like below
2 Replies
- Dangar332Resident Rockstar
hi, seanrpeters
try below measureMeasure = FILTER( VALUES('Table'[Column1]),'Table'[Column1]="y")data look like below
table visual look like below
- seanrpetersFrequent Visitor
Thank you!