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! Request now
is it possible to acheive like below in Power BI matrix?
@amitchandak @Idrissshatila @Ritaf1983 @parry2k @Ahmedx @Pragati11 @mwegener @Greg_Deckler @lbendlin @Syk @danextian @Ashish_Mathur @MFelix
@mwegener expanding hierarchy works but we have other rows not looking good.
The downside is the table looks bad because there's part numbers with inventory, but no purchases.
How did you deal with this problem before?
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
See if this helps
Proud to be a Super User!
Paul on Linkedin.
Have you expanded the hierarchy in the columns?
In the attachment you can find my example file
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
@mwegener @lbendlin @Ritaf1983 @amitchandak @Pragati11 can someone please assist with this?
Hi,
Power BI only hides categorical columns no measure columns.
So you need a disconnected table with a column containing the identifiers "On Hand Qty", "Current Value" and "Open Purchases".
Using a measure and the SWITCH statement, you then assign the calculation of the corresponding key figure to each column label.
Sample code for the measure:
SWITCH (
SELECTEDVALUE(ColumLayout[Colum]),
"On Hand Qty", [On Hand Qty],
"Current Value", [Current Value],
"Open Purchases", [Open Purchases]
)
Best regards
Marcus
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
thanks for looking into this, dint exactly followed your suggestion.
you want me to create a separate table only with these 3 columns values in one column and use the above switch ,easure in the matrix?
Yes, because only column values are suppressed if they are blank.
Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast - Power BI Tutorials
how to do that, can you give me any reference?
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.