Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
seanrpeters
Frequent 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? 

 

1 ACCEPTED SOLUTION
Dangar332
Super User
Super User

hi, @seanrpeters 

try below measure

Measure = 
 FILTER( VALUES('Table'[Column1]),'Table'[Column1]="y")

 

data look like below

Dangar332_0-1705137815575.png

 

table visual look like below

Dangar332_1-1705137842288.png

 


 

View solution in original post

2 REPLIES 2
Dangar332
Super User
Super User

hi, @seanrpeters 

try below measure

Measure = 
 FILTER( VALUES('Table'[Column1]),'Table'[Column1]="y")

 

data look like below

Dangar332_0-1705137815575.png

 

table visual look like below

Dangar332_1-1705137842288.png

 


 

Thank you!

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.