Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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()
)
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
73 | |
72 | |
38 | |
30 | |
26 |
User | Count |
---|---|
99 | |
87 | |
45 | |
43 | |
35 |