The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 | |
10 | |
8 | |
7 | |
6 |
User | Count |
---|---|
32 | |
12 | |
10 | |
10 | |
9 |