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
Anonymous
Not applicable

Cumulative Count aggregated by month

Hello.

 

I am trying to plot a chart on Power BI where it shows the monthly cumulative distinct count (total number of costumers increasing by month).

 

I am using the attached table as my database and i have made the following measure:

Qtd Empresas ALL = calculate(distinctcount(Planilha1[Empresa ID]),filter(all(Planilha1[Data de Criação]),Planilha1[Data de Criação]<=max(Planilha1[Data de Criação])))
 
With this measure, iniatilly it works right as i expected:
pedroguimaraes_0-1651515959423.png

 

But when instead of using the date field i change for the monthly view, suddenly it stop working:

pedroguimaraes_1-1651516020536.png

 

Any ideas on how to solve this problem?

 

Closing DateCostumer ID
01/01/20221
01/01/20222
05/01/20223
10/01/20224
01/02/20225
01/02/20226
01/02/20227
01/03/20228
01/03/20229
01/03/202210
01/03/202211
01/03/202212
01/04/202213
01/04/202214
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

Please refer to my pbix file to see if it helps you.

Add an index column.

Click Home>>Transform data>>Add column>>Index column>>From 1.

vpollymsft_0-1651719100139.png

Then create a measure.

Qtd Empresas = calculate(COUNT(lanilha1[Costumer ID]),filter(all(lanilha1),lanilha1[Index]<=MAX(lanilha1[Index])))

vpollymsft_1-1651719170118.png

If I have misunderstood your meaning, please provide your pbix file without privacy information and your desired output.

 

Best Regards

Community Support Team _ Polly

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi @Anonymous ,

Please refer to my pbix file to see if it helps you.

Add an index column.

Click Home>>Transform data>>Add column>>Index column>>From 1.

vpollymsft_0-1651719100139.png

Then create a measure.

Qtd Empresas = calculate(COUNT(lanilha1[Costumer ID]),filter(all(lanilha1),lanilha1[Index]<=MAX(lanilha1[Index])))

vpollymsft_1-1651719170118.png

If I have misunderstood your meaning, please provide your pbix file without privacy information and your desired output.

 

Best Regards

Community Support Team _ Polly

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

Anonymous
Not applicable

Thank you, that worked right as i expected. When i place the summarized monthly view, it shows the way i needed:

pedroguimaraes_0-1651752634332.png

 

amitchandak
Super User
Super User

@Anonymous , Formula should remain on date table and you should use date from date table for better result. Date of date table should join with your date

 

Qtd Empresas ALL = calculate(distinctcount(Planilha1[Empresa ID]),filter(all(Date[Date]),Date[Date]<=max(Date[Date])))

 

Month, Month Year, date in visual should come from date table

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Hello Amit, thank you for your support.

 

After aplying the changes suggested by you, the result is not working. Look at the images below, could you provide a .pbix file so I can visualize it working with the table i have attached to the topic? thank you very much!

 

measure = 

Qtd Empresas ALL = calculate(distinctcount(Planilha1[Empresa ID]),filter(all(dCalendario[Data]),dCalendario[Data]<=max(dCalendario[Data])))
 
result (it is showing the all time total for every month);
pedroguimaraes_0-1651609131139.pngpedroguimaraes_1-1651609146676.png

 

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.