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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
Srinivas_BI
Regular Visitor

Remove/Hide the Columns in Metrix

Hi,

Is there a way to remove the monthly average columns and only leave the Average column at the end (with the average value of all 5 months)?

 

Srinivas_BI_0-1718366055853.png

Please help

Thank You

1 ACCEPTED SOLUTION
rajendraongole1
Super User
Super User

Hi @Srinivas_BI - If you are using a matrix visualization, there is no option to hide or remove the date wise monthly average columns and show only total.

you have to change other alternatives, like change the chart and take create a dax measure only for Total average value.

 

rajendraongole1_0-1718431748958.png

 

 

ConditionalProductAverage =
IF(
    ISINSCOPE('Date'[Date]),
    BLANK(),
    AVERAGE(financials[Profit])
)
 
 
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!

 

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @Srinivas_BI ,

Did the above suggestions help with your scenario? if that is the case, you can consider Kudo or Accept the helpful suggestions to help others who faced similar requirements.

If these also don't help, please share more detailed information and description to help us clarify your scenario to test.

How to Get Your Question Answered Quickly 

Regards,

Xiaoxin Sheng

Ritaf1983
Super User
Super User

Hi @Srinivas_BI 
You can create a matrix with multiple-column totals with calculated groups. 
Please refer to the linked video guide:

https://www.youtube.com/watch?v=ExCD0vM-OEU

If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly

 

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile
rajendraongole1
Super User
Super User

Hi @Srinivas_BI - If you are using a matrix visualization, there is no option to hide or remove the date wise monthly average columns and show only total.

you have to change other alternatives, like change the chart and take create a dax measure only for Total average value.

 

rajendraongole1_0-1718431748958.png

 

 

ConditionalProductAverage =
IF(
    ISINSCOPE('Date'[Date]),
    BLANK(),
    AVERAGE(financials[Profit])
)
 
 
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!

 

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.