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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Hombleu
Regular Visitor

Cumulative count of rows

Hi guys,

 

Maybe someone could help me with this issue..

I've made a connection with MYSQL db in Power BI. The db rows are based on daily base. So I've already created a countrows measure to count the rows per day. But now I'm looking for a cumulative measure of the rows per day.

 

So the rows per day can be counted in a cumulative way.

3 REPLIES 3
v-haibl-msft
Employee
Employee

@Hombleu

 

Please follow the solution provided by jPinhao, you should only need to do small change to formula if you want to get the cumulative rows – replace [number] with your countrows measure.

 

cumulative = 
CALCULATE (
    [countrows],
    FILTER ( ALLSELECTED ( Table1 ), Table1[Date] <= MAX ( Table1[Date] ) )
)

Cumulative count of rows_1.jpg

 

Best Regards,

Herbert

HI Everyone...

 

I create my DAX to accumulativer count using all your suggest,  BUT, I need to know, what to modify if I apply a slicer to see accumulative by month or year.  Beacuse if I apply a slicer the running total dont start correctly, just work without any slicer apply.

 

Runing Total = CALCULATE(COUNT(RPT[SUBSCRIBER]),
ALL(RPT),RPT[ACTIVATION_DATE] <= EARLIER(RPT[ACTIVATION_DATE]))
 
Image 5.jpg
 
 
jPinhao
Helper II
Helper II

You have to calculate the sum of the value while filtering by all dates before the current MAX - current as in the current context, which will be the the day in a bar chart with a date on the axis for instance:

 

Cummulative = CALCULATE (
                     [number]
                     FILTER ( ALL([Date]), [Date] <= MAX([Date]) )
              )

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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