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 August 31st. Request your voucher.

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
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Top Solution Authors