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
Johnny123
New Member

Calculation depending on multiple filter selection

i try to calculate the count of entries within a column depending on the (multiple) filter option. In my table I have 3 different columns:

3.PNG

 

 

1. Team
2. Cup: This should be my filter with the options (CL, UC, No Cup)
3. Points: This is information I want (not the sum, just the number of entries that are not blank).

 

For example, if someone selects "CL" than the result should be 3, because one entries does not have information on that.

1.PNG

 

I chose the following formula:

Test = if(SELECTEDVALUE(Tabelle1[Cup])="CL";CALCULATE(COUNT(Tabelle1[Point]));if(SELECTEDVALUE(Tabelle1[Cup])="UC";CALCULATE(COUNT(Tabelle1[Point]));"false"))

 

But if someone selects "CL" and "UC" than I don't know how to calculate the correct number of entries depending on the filter selection.

 

What I want: One single dynamic card, which shows the number of entries in the "Points"-column depending on the filter selection.

1 ACCEPTED SOLUTION
v-yuta-msft
Community Support
Community Support

@Johnny123 ,

 

Result = CALCULATE(COUNTROWS(Table1), FILTER(ALLSELECTED(Table1), Table1[Point] <> BLANK()))

Capture.PNG 

 

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-yuta-msft
Community Support
Community Support

@Johnny123 ,

 

Result = CALCULATE(COUNTROWS(Table1), FILTER(ALLSELECTED(Table1), Table1[Point] <> BLANK()))

Capture.PNG 

 

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.