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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
Syndicate_Admin
Administrator
Administrator

Do not show totals in all array columns

Hello

Having the following matrix, how can I show only the total of the last column and hide the total of the others?

apenaranda_0-1733991913678.png

apenaranda_1-1733991936517.png

Thank you.

1 ACCEPTED SOLUTION
Tahreem24
Super User
Super User

@Syndicate_Admin You can use the white font color for those columns which you don't want to display total. Refer the below screen shot.

Tahreem24_0-1733996351248.png

 

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard

View solution in original post

2 REPLIES 2
Tahreem24
Super User
Super User

@Syndicate_Admin You can use the white font color for those columns which you don't want to display total. Refer the below screen shot.

Tahreem24_0-1733996351248.png

 

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard
Bibiano_Geraldo
Super User
Super User

Hi @Syndicate_Admin ,

To achieve desired result use ISINSCOPE function, modify your measures to look like bellow:

 

Primera fecha: Fecha_Pedido = 
IF(
    ISINSCOPE(YourTable[Document No_]),
    
    //PASTE HERE THE CALCULATIONS OF YOUR MEASURE Primera fecha: Fecha_Pedido
    
    ,BLANK()
)

 

Primera fecha: Shipment Date = 
IF(
    ISINSCOPE(YourTable[Document No_]),
    
    //PASTE HERE THE CALCULATIONS OF YOUR MEASURE Primera fecha: Shipment Date
    
    ,BLANK()
)

 

Ultima fecha: Sell-to Customer No_ = 
IF(
    ISINSCOPE(YourTable[Document No_]),
    
    //PASTE HERE THE CALCULATIONS OF YOUR MEASURE Ultima fecha: Sell-to Customer No_
    
    ,BLANK()
)

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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