Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
andrehawari
Helper II
Helper II

Measure to display value only if "All" is selected, otherwise return blank

Hi, I need to create a measure that have the opposite function in this links

 

https://community.powerbi.com/t5/Desktop/Visualisations-blank-until-something-selected-in-a-slicer/t...

 

 

Basically I want to make the the value is blank when certain value is selected, but it display value only if all is selected

 

Please the find the image below,

When Category is Selected,  and SubCategory=All, the Value2 is displayed

 

1.png

 

However, if ANY of the SubCategory is selected, I want to make the Value2 is BLANK

2.png.



My idea was creating a measure like this (below is just pseudo code)

 

Value2Measure= 

var parameter=selectedvalue(Table[SubCategory]

return 

IF(parameter=  something All selected , sum(value2), else if any of the value is selected, blank())

 

Any idea would be really appreaciated, Thanks !

Andre

1 ACCEPTED SOLUTION
sokg
Solution Supplier
Solution Supplier

Please, try this measure for value2

 

SumValue2 =
VAR NumberFilterCategory =
    COUNTROWS ( VALUES ( TestData[CATEGORY] ) )
VAR NumberFilterSubCategory =
    CALCULATE (
        COUNTROWS ( VALUES ( TestData[SUBCATEGORY] ) );
        ALLEXCEPT ( TestData; TestData[SUBCATEGORY] )
    )
RETURN
    IF (
        NumberFilterCategory <> NumberFilterSubCategory;
        SUM ( TestData[VALUE2] );
        BLANK ()
    )

 

I have these results

Capture2.JPG  Capture.JPG

 

 

my test data was the pic below

Capture3.JPG

 

 

Is this work for you????

View solution in original post

3 REPLIES 3
sokg
Solution Supplier
Solution Supplier

Please, try this measure for value2

 

SumValue2 =
VAR NumberFilterCategory =
    COUNTROWS ( VALUES ( TestData[CATEGORY] ) )
VAR NumberFilterSubCategory =
    CALCULATE (
        COUNTROWS ( VALUES ( TestData[SUBCATEGORY] ) );
        ALLEXCEPT ( TestData; TestData[SUBCATEGORY] )
    )
RETURN
    IF (
        NumberFilterCategory <> NumberFilterSubCategory;
        SUM ( TestData[VALUE2] );
        BLANK ()
    )

 

I have these results

Capture2.JPG  Capture.JPG

 

 

my test data was the pic below

Capture3.JPG

 

 

Is this work for you????

Thanks A lot !

I also getting another approach, but it take 2 measures instead of 1

 

slicerallselected =


var totalslicervalue = calculate(DISTINCTCOUNT(Sheet1[SubCategory]),ALL(Sheet1[SubCategory]))
var countselectedvalue= calculate(DISTINCTCOUNT(Sheet1[SubCategory]),ALLSELECTED(Sheet1[SubCategory]))

return

IF(totalslicervalue=countselectedvalue,1,0)

 

 

 

Value2Measure = switch([slicerallselected],1,sum(Sheet1[Value2]),0,blank())

you can test both to see what is works better with your data (performance issues).

 

you can see this video to check how both measures perform with you data

 

https://www.sqlbi.com/tv/my-power-bi-report-is-slow-what-should-i-do/

 

Italians here do great job!!!

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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