Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hello all,
I have 9 measures used on multiple other reports.
I'm trying to build a Matrix and have the below results. It works but not grouped well and messy.
MTD Sales | QTR Sales | YTD Sales | Inventory | Seconday Inventory | In-Transit | At Sea | Future Orders Confirmed | Future Orders Pending | |
East | |||||||||
West | |||||||||
Central |
I want to have the measures have a parent title, or group them by there type (Sales, Inventory, Transit, Order). Imagine below but with merged cells.
I've tired everything I can think of but falling short. Does anyone know how to do this?
hi @TS_PowerBI
It's very possible. You will need a table, likely disconnected from your model, with the 4 states AND your measure titles. Add both into your matrix as columns.
Next, you may need a top level measure to determine what to show. Something along this line:
VAR _FindMeasure = SELECTEDVALUE(DisconnectedTable[MeasureTitle])
RETURN
SWITCH( _FindMeasure,
"MTD Sales", [MTD Sales],
"Inventory", [Inventory],
"Future Orders Pending", [FutureOrdersPending]
)
EDIT: Here's a sample set-up you'd likely need
Top-level measure:
Expected results:
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
142 | |
80 | |
64 | |
52 | |
48 |
User | Count |
---|---|
213 | |
89 | |
77 | |
66 | |
60 |