The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi All,
Please help for the below requirement for matrix Viz. I have the below Main Matrix table.. The user wants the MAIN TOTAL value to be only the sum of values where FundCert value is blank.. in this below example 39678 and hide the Fundcert values displayed in FundCert level.
to summarize...39678 should be the MAIN TOTAL and blank values and its total for FundCert Columns should be hidden. Is this possible?. Please help. sample PBIX is shared in the below location
https://drive.google.com/file/d/1evTzmkRSjrX4XtidikRPh9fi1NcjXXI6/view?usp=sharing
Solved! Go to Solution.
@ak77 try this measure:
Sum Value = SUM ( Sheet1[Values] )
Sum for Display =
SWITCH (
TRUE (),
HASONEVALUE ( Sheet1[Classification] ), CALCULATE ( [Sum Value], KEEPFILTERS ( NOT ISBLANK ( Sheet1[Fund Cert] ) ) ),
CALCULATE ( [Sum Value], ISBLANK ( Sheet1[Classification] ) )
)
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@ak77 the reason it is not working, value in the columns is not blank it is a string with no value, these are two different things:
here is the updated measure:
Sum Value 1 for Display =
SWITCH (
TRUE (),
HASONEVALUE ( Earningssample[Category_Classification] ), CALCULATE ( [Sum Value1], KEEPFILTERS ( COALESCE ( Earningssample[Category], "" ) <> "" ) ),
CALCULATE ( [Sum Value1], COALESCE ( Earningssample[Category], "" ) = "" )
)
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@ak77 the reason it is not working, value in the columns is not blank it is a string with no value, these are two different things:
here is the updated measure:
Sum Value 1 for Display =
SWITCH (
TRUE (),
HASONEVALUE ( Earningssample[Category_Classification] ), CALCULATE ( [Sum Value1], KEEPFILTERS ( COALESCE ( Earningssample[Category], "" ) <> "" ) ),
CALCULATE ( [Sum Value1], COALESCE ( Earningssample[Category], "" ) = "" )
)
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@ak77 try this measure:
Sum Value = SUM ( Sheet1[Values] )
Sum for Display =
SWITCH (
TRUE (),
HASONEVALUE ( Sheet1[Classification] ), CALCULATE ( [Sum Value], KEEPFILTERS ( NOT ISBLANK ( Sheet1[Fund Cert] ) ) ),
CALCULATE ( [Sum Value], ISBLANK ( Sheet1[Classification] ) )
)
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@parry2k , Thanks again for providing measure. it did worked for the sample PBIX i provided yesterday but when i tried the same measure with the original dataset the main total is displayed blank. Can you please help. i have attached the pbix for reference . Thanks again
https://drive.google.com/file/d/1uRqkCd5TEhMVqi4eTdJDAEDKCfyVnDbv/view?usp=sharing
User | Count |
---|---|
86 | |
84 | |
35 | |
35 | |
34 |
User | Count |
---|---|
94 | |
79 | |
65 | |
55 | |
52 |