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! It's time to submit your entry. Live now!
Hi Friends,
Currently i have created a Matrxi visual using the 3 dimension columns and 1 fact column and the result is below.
I am faicng unique situation where i need to show the total only at the first row of the category level. Something like the below.
Note: I dont want to use row totals.
Please suggest me some ideas.
@amitchandak @Ritaf1983 @Greg_Deckler @ChandeepChhabra @GilbertQ @dbeavon3
Solved! Go to Solution.
Hi @v-jeevanay ,
I created a sample pbix file(see the attachment), please check if that is what you want.
Measure =
VAR _category =
SELECTEDVALUE ( 'Table'[Product Category] )
VAR _subcategory =
SELECTEDVALUE ( 'Table'[Product Sub Category] )
VAR _product =
SELECTEDVALUE ( 'Table'[Product Name] )
VAR _minsubcat =
CALCULATE (
MIN ( 'Table'[Product Sub Category] ),
ALLEXCEPT ( 'Table', 'Table'[Product Category] )
)
VAR _minpro =
CALCULATE (
MIN ( 'Table'[Product Name] ),
FILTER (
ALLSELECTED ( 'Table' ),
'Table'[Product Category] = _category
&& 'Table'[Product Sub Category] = _minsubcat
)
)
RETURN
IF (
_subcategory = _minsubcat
&& _product = _minpro,
CALCULATE (
SUM ( 'Table'[Sales] ),
ALLEXCEPT ( 'Table', 'Table'[Product Category] )
)
)
Best Regards
Hi @v-jeevanay ,
I created a sample pbix file(see the attachment), please check if that is what you want.
Measure =
VAR _category =
SELECTEDVALUE ( 'Table'[Product Category] )
VAR _subcategory =
SELECTEDVALUE ( 'Table'[Product Sub Category] )
VAR _product =
SELECTEDVALUE ( 'Table'[Product Name] )
VAR _minsubcat =
CALCULATE (
MIN ( 'Table'[Product Sub Category] ),
ALLEXCEPT ( 'Table', 'Table'[Product Category] )
)
VAR _minpro =
CALCULATE (
MIN ( 'Table'[Product Name] ),
FILTER (
ALLSELECTED ( 'Table' ),
'Table'[Product Category] = _category
&& 'Table'[Product Sub Category] = _minsubcat
)
)
RETURN
IF (
_subcategory = _minsubcat
&& _product = _minpro,
CALCULATE (
SUM ( 'Table'[Sales] ),
ALLEXCEPT ( 'Table', 'Table'[Product Category] )
)
)
Best Regards
hello @v-jeevanay ,
yes try the following but fill in with your field and table names
Sales =
IF (
ISINSCOPE('Table'[Product Name]),
BLANK(), -- For Product Names, show nothing
IF (
ISINSCOPE('Table'[Product Sub Category]),
BLANK(), -- For Sub Categories, show nothing
[TotalSales]
) -- Show total at Product Category level
)
)
Proud to be a Super User! | |
Hi @Idrissshatila,
This wont work becasue the moment first condition satisfies
IF (
ISINSCOPE('Table'[Product Name]),
BLANK(),
It wont go to the next set of IF conditions.
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 41 | |
| 39 | |
| 22 | |
| 21 |
| User | Count |
|---|---|
| 144 | |
| 106 | |
| 63 | |
| 38 | |
| 31 |