Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi!
I am using a Count Measure in my powerBI report and it shows the correct result but whenever i drop the date with the measure it does not aggregate the values and shows count in each date.
e.g. in the below image Date is repeating i want to see the sum in each date.how is it possible?
Measure i am using =
Solved! Go to Solution.
@Anonymous
Try just put date and this measure in the table visual, you have other fields so the count measure are not summarized. You may also add allselected() to the expression and try.
Meausre =
Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.
@Anonymous
Try just put date and this measure in the table visual, you have other fields so the count measure are not summarized. You may also add allselected() to the expression and try.
Meausre =
Paul Zheng _ Community Support Team
If this post helps, please Accept it as the solution to help the other members find it more quickly.
This is what your measure should look like:
Secondly, I can't tell you why you get what you get since I can't see the model.
By the way, having a model with one table only where you store all your data is a very bad idea. Please get familiar with the principles of data modeling for Power BI: Understand star schema and the importance for Power BI - Power BI | Microsoft Docs
@Anonymous
There can be various reasons why this is happening. Best if you could share the file with us.
Otherwise you can try the SUMX formula:
VAR A = SUMX(ALL(Table), CALCULATE(COUNT('Table'[PersonId]),FILTER('Table','Table'[STATUS]="Completed")))
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.