Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
i have table Reservations and table Rooms. Reservations has a column called # Attending. Rooms has a column called Capacity. I want to filter out all rows in Reservations table where #Attending and Capacity are equal. How do i do that?
Solved! Go to Solution.
Suppose the two tables have many-many relationship like below:
'Reservations'
'Rooms'
You can click Modeling-> New Table and input dax code below to achieve the filtered table:
Filtered Table = FILTER(Reservations, Reservations[# Attending] in VALUES(Rooms[Capacity]))
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Suppose the two tables have many-many relationship like below:
'Reservations'
'Rooms'
You can click Modeling-> New Table and input dax code below to achieve the filtered table:
Filtered Table = FILTER(Reservations, Reservations[# Attending] in VALUES(Rooms[Capacity]))
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 81 | |
| 49 | |
| 36 | |
| 31 | |
| 30 |