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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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