Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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?
Solved! Go to Solution.
hi, @seanrpeters
try below measure
Measure =
FILTER( VALUES('Table'[Column1]),'Table'[Column1]="y")
data look like below
table visual look like below
hi, @seanrpeters
try below measure
Measure =
FILTER( VALUES('Table'[Column1]),'Table'[Column1]="y")
data look like below
table visual look like below
Thank you!
User | Count |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
11 | |
8 | |
7 |