Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
Hi All,
I want to get the count of people less than 50 for each date based on the criteria as filter option.
If i select criteria 1,2 &3 then i need the count of "id" that has sum of total less than "50"
Output :
Date | total<=50 |
01-Jan-21 | 3 |
07-Jan-21 | 2 |
14-Jan-21 | 2 |
id | Date | Criteria | Total |
a | 01-01-2021 | 1 | 110 |
a | 07-01-2021 | 1 | 110 |
a | 14-01-2021 | 1 | 101 |
b | 01-01-2021 | 2 | 45 |
b | 01-01-2021 | 3 | 45 |
b | 07-01-2021 | 2 | 45 |
b | 07-01-2021 | 3 | 45 |
b | 14-01-2021 | 2 | 45 |
b | 14-01-2021 | 3 | 45 |
c | 01-01-2021 | 4 | 72 |
c | 01-01-2021 | 1 | 2.5 |
c | 07-01-2021 | 4 | 40 |
c | 07-01-2021 | 3 | 20 |
c | 07-01-2021 | 2 | 10 |
c | 07-01-2021 | 1 | 2.5 |
c | 14-01-2021 | 4 | 90 |
c | 14-01-2021 | 1 | 2.5 |
d | 01-01-2021 | 1 | 45 |
d | 07-01-2021 | 1 | 90 |
d | 14-01-2021 | 1 | 90 |
e | 01-01-2021 | 4 | 48.3 |
e | 01-01-2021 | 1 | 18 |
e | 01-01-2021 | 5 | 24.7 |
e | 07-01-2021 | 4 | 53.3 |
e | 07-01-2021 | 1 | 18 |
e | 07-01-2021 | 5 | 24.7 |
e | 14-01-2021 | 4 | 48.3 |
e | 14-01-2021 | 1 | 18 |
e | 14-01-2021 | 5 | 24.7 |
Solved! Go to Solution.
Hi, @hiren89vora
Please check the below picture and the sample pbix file's link down below.
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: linkedin.com/in/jihwankim1975/
Twitter: twitter.com/Jihwan_JHKIM
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
@hiren89vora
You can use the following measure to get the desired results:
Measure =
COUNTROWS(
FILTER(
ADDCOLUMNS(
VALUES(Table1[id]),
"Sum", CALCULATE(SUM(Table1[Total]))
),
[Sum] <= 50
)
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@hiren89vora
You can use the following measure to get the desired results:
Measure =
COUNTROWS(
FILTER(
ADDCOLUMNS(
VALUES(Table1[id]),
"Sum", CALCULATE(SUM(Table1[Total]))
),
[Sum] <= 50
)
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Hi, @hiren89vora
Please check the below picture and the sample pbix file's link down below.
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: linkedin.com/in/jihwankim1975/
Twitter: twitter.com/Jihwan_JHKIM
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
@hiren89vora , based on what I got. Please try a measure like
sumx(filter(summarize(Table, Table[Date], "_1", sum(Table[Total])),[_1]<=50),[_1])
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
86 | |
71 | |
66 | |
50 | |
29 |
User | Count |
---|---|
117 | |
100 | |
73 | |
65 | |
40 |