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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
montibellin
Helper I
Helper I

How to filter table values of column1 based on column2 value

Hi Guys,

 

I've a tableA with two columns where column1 values can occur in column2.


I need to create in DAX a new table with all rows of tableA  if the column1 has value that if present in column2
the picture below can explain my goal

montibellin_0-1667168548776.png

 

1 ACCEPTED SOLUTION
VahidDM
Super User
Super User

Hi @montibellin 

 

Create your new table with this DAX expression:

Table 2 = 
Var _C2 = VALUES('Table'[Column2])
return
CALCULATETABLE('Table','Table'[Column1] in _C2)

Output:

VahidDM_0-1667169114507.png

 

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!! 

Badges.jpg

LinkedIn | Twitter | Blog | YouTube 

View solution in original post

1 REPLY 1
VahidDM
Super User
Super User

Hi @montibellin 

 

Create your new table with this DAX expression:

Table 2 = 
Var _C2 = VALUES('Table'[Column2])
return
CALCULATETABLE('Table','Table'[Column1] in _C2)

Output:

VahidDM_0-1667169114507.png

 

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!! 

Badges.jpg

LinkedIn | Twitter | Blog | YouTube 

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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