Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin 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.
Hello
Having the following matrix, how can I show only the total of the last column and hide the total of the others?
Thank you.
Solved! Go to Solution.
@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.
@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.
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()
)
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
79 | |
73 | |
57 | |
36 | |
31 |
User | Count |
---|---|
91 | |
60 | |
59 | |
49 | |
45 |