Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Change matrix total to show different options - sum, count or average.

I have a matrix that look at employee hours by pay period. Is there a way to have different options in the Total column? I would like to have the sum in rows 1 through 4 and the average in rows 5 and 6.

 

Power BI Help.png

 

4 REPLIES 4
parry2k
Super User
Super User

@Anonymous you can put conditions in your measure based on which row you are on: something like this, tweak switch function as per your requirement.

 

Measure = 
SWITCH ( SELECTEDVALUE ( Table[Row] ),
"Sum Sales", SUM ( Table[Data] )
"Avg Sales", AVERAGE ( Table[Value] )
)

 

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Anonymous
Not applicable

I guess that would work but I am simple in nature - I was hoping for a way to select sum, count or average in the Format Roller, Subtotals, Row subtotals. Hopefully in the near future Microsoft will add this function. Thanks for your help. 

 

@Keltea in fact, we all want an easy and out-of-the-box solution, let's never stop adding them as an idea in the ideas forum and helping to improve the product. Bless you!!

@Anonymous indeed, we all want easy and out of box solution, never stop adding these as an idea on ideas forum and help improve the product. Cheers!!



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors