- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Count occurences of days which has a summed total below a certain value
Hi Community,
A question for a personal dashboard I have. I am counting calories (yeah, I know) and I got this source calories4 with multiple entries per date. The uniqueness in this source is the piece of food I ate with the number of calories it holds.
For example the month May, in the source this month got 214 entries, which represent the food I ate during the 31 days May knows.
In PowerBI the source is represented as a sum of calories per date.
Today I am trying to visualize the number of days on which I ate less than 2500 calories. The month May has 7 of this kind of days and as I think I need to distinct count the dates which will be 31 in my example and then filter on those which has a sum of less than 2500 but for some reason I can't get this done:
NumOfGreenDays = CALCULATE( DISTINCTCOUNT( calories4[Datum] ), FILTER( calories4, calories4[Calorien] <= 2500 ))
Where am I making the mistake?
Thanks in advance and kind regards,
Aad
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @AadFourpoints
Please try
NumOfGreenDays =
SUMX (
VALUES ( calories4[Datum] ),
INT ( CALCULATE ( SUM ( calories4[Calorien] ) ) <= 2500 )
)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Both thanks for replying this quick! The solution Tamerj1 posted works like a charm! And thanks Some_big, I see the datetime format and that is a bit overkill *grin*
Thanks alot and kind regards,
Aad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @AadFourpoints
Please try
NumOfGreenDays =
SUMX (
VALUES ( calories4[Datum] ),
INT ( CALCULATE ( SUM ( calories4[Calorien] ) ) <= 2500 )
)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi @AadFourpoints try to format your Datum colum as type date in Power Query step during import.
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!

Helpful resources
Join our Fabric User Panel
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Power BI Monthly Update - June 2025
Check out the June 2025 Power BI update to learn about new features.

User | Count |
---|---|
11 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
18 | |
15 | |
11 | |
9 | |
9 |