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.
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:
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.
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.
Solved! Go to Solution.
Result = CALCULATE(COUNTROWS(Table1), FILTER(ALLSELECTED(Table1), Table1[Point] <> BLANK()))
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.
Result = CALCULATE(COUNTROWS(Table1), FILTER(ALLSELECTED(Table1), Table1[Point] <> BLANK()))
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.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
64 | |
63 | |
52 | |
39 | |
24 |
User | Count |
---|---|
80 | |
57 | |
45 | |
44 | |
35 |