Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have two datasets. One showing the available Inventory of Products over time, the other Products Sold and Part IDs.
In a dashboard, I have to show all Products both Sold and Available. This "status" will be determined by whether an ID appears in both datasets or not.
**This is where I am struggling most. I need a solution that addresses a Many:1 relationship of repeating Item IDs in the Sold data, and a unique Item ID in inventory during the match process. Many of Power BIs functions require unique IDs in each of two columns to "match" between two datasets.
In the dashboard, I'd like to show the following in a hierarchical table
I have created (2) sample datasets, one representing Available Inventory, the other what's Sold.
https://www.dropbox.com/s/gbzdwo6qxxt026x/Sample%20Data.xlsx?dl=0
Thanks in advance. Appreciate a link to a .pbix file if possible.
Solved! Go to Solution.
@Anonymous,
Create a column in the Inventory table using DAX below.
Status = IF(CALCULATE(COUNTROWS(Sold), FILTER( Sold, Sold[Item ID] = EARLIER(Inventory[Item ID]) ) ) > 0,"Sold","Available")
Create table visuals as below.
Regards,
Lydia
@Anonymous,
Create a column in the Inventory table using DAX below.
Status = IF(CALCULATE(COUNTROWS(Sold), FILTER( Sold, Sold[Item ID] = EARLIER(Inventory[Item ID]) ) ) > 0,"Sold","Available")
Create table visuals as below.
Regards,
Lydia
@Anonymous
This worked wonderfully. Can you break down the dax statement so I understand what's happening, and how it works?
Thanks!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!