Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
squizzonk
Regular Visitor

Running Total Basic Issue

Ok, this should be simple, but I'm an amateur ... I created a quick measure running total where it should do a distinct count of the Username, and then caclulate the running total of that count over the UserCreatedDate1 field.  Should be compounding the running total over each month, instead i'm getting the full total 5517 repeated.  Formula doesn't seem to take into account the month.  Please help, thanks!

 

squizzonk_0-1653341803182.png

 

1 ACCEPTED SOLUTION
squizzonk
Regular Visitor

Figured it out ....
 
running total measure = CALCULATE(DISTINCTCOUNT(PBI_User_Region[Username]),
FILTER(ALL(PBI_User_Region),
PBI_User_Region[UserCreatedDate1] <= MAX(PBI_User_Region[UserCreatedDate1])
))

View solution in original post

2 REPLIES 2
v-henryk-mstf
Community Support
Community Support

Hi @squizzonk ,

 

Thanks for your feedback.😊

 

If the problem has been solved you can mark the reply for the standard answer to help the other members find it more quickly. If not, please point it out.


Best Regards,
Henry

squizzonk
Regular Visitor

Figured it out ....
 
running total measure = CALCULATE(DISTINCTCOUNT(PBI_User_Region[Username]),
FILTER(ALL(PBI_User_Region),
PBI_User_Region[UserCreatedDate1] <= MAX(PBI_User_Region[UserCreatedDate1])
))

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors