The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance 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()
)
User | Count |
---|---|
78 | |
77 | |
38 | |
31 | |
28 |
User | Count |
---|---|
106 | |
98 | |
55 | |
49 | |
47 |