March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Below is an example of a table visual I am working on in PBI. I am trying to display the tables where the data is coming from (there are 3 tables which do have relationships. Customers table to Sales Table (one to many), Product Table to Sales Table (one to many).
What I am looking to do, is only display a single row when the values from the column "Product Table Level" match the values from the Customer Table Level". In the screen shot below, the first table represents how the data is currently being displayed. The second table is the desired result. Is there a dax formula that I can use to filter this table down to the desired result? Thank you!
Solved! Go to Solution.
HI @JenWilson
Use below measure and apply it as a visual filter.
Let me know if this works, I have this solution assuming things are simple. If this does'nt work or data model is complicated, please provide a sample file or more details.
If this post helps, then please consider Accept it as the solution to help the others find it more quickly. Appreciate you kudos!!
Follow me on LinkedIn!!!
HI @JenWilson
Use below measure and apply it as a visual filter.
Let me know if this works, I have this solution assuming things are simple. If this does'nt work or data model is complicated, please provide a sample file or more details.
If this post helps, then please consider Accept it as the solution to help the others find it more quickly. Appreciate you kudos!!
Follow me on LinkedIn!!!
Hi @JenWilson - can you try below calculated colum to filter down to the desired result
Matched Level =
IF(
RELATED('Product Table'[Product Table Level]) = RELATED('Customers'[Customer Table Level]),
RELATED('Product Table'[Product Table Level]),
BLANK()
)
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
107 | |
75 | |
53 | |
52 | |
44 |
User | Count |
---|---|
165 | |
112 | |
73 | |
61 | |
50 |