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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
SirD
New Member

Count all dates in the column that is less than or equal to the current month

Lets call the table name "Business Table", I need the DAX to create a measure that will count rows for each month and add it to the count of rows for the earlier months. 

 

Workshop  scheduled On 
01/10/2022
01/10/2022
01/11/2022
01/11/2022
01/11/2022
01/12/2022
01/12/2022
01/01/2023
01/01/2023
01/01/2023
01/01/2023
 

 

Expected Result should look like this

Oct-222
Nov-225
Dec-227
Jan-2311
1 ACCEPTED SOLUTION

Hi @SirD ,
Here is the measure:

Running Total = 

Var _currentDate = MAX(Workshops[Workshop Sceduled])

Var _calc = CALCULATE(Sum(Workshops[Count]),FILTER(ALL(Workshops),Workshops[Workshop Sceduled]<=_currentDate))

Return _calc


Let me know if you have any questions.

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

4 REPLIES 4
Nathaniel_C
Community Champion
Community Champion

Hi @SirD ,

Like this?

Nathaniel_C_0-1673726281737.png


Let me know if you have any questions.

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Hi @SirD ,
Here is the measure:

Running Total = 

Var _currentDate = MAX(Workshops[Workshop Sceduled])

Var _calc = CALCULATE(Sum(Workshops[Count]),FILTER(ALL(Workshops),Workshops[Workshop Sceduled]<=_currentDate))

Return _calc


Let me know if you have any questions.

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Hi @SirD ,
First you will need to use Groupby in Power Query and count the number of dates in each month.

Go to the Transform tab, select GROUPBY, Count the rows and you will have the table in the picture. Then add the table to Power BI and run the measure.

 

 

 

Nathaniel_C_1-1673726732285.png


Let me know if you have any questions.

If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




RemyO
Resolver I
Resolver I

Why not create a column MMM-yy

Then take that column and do a count(Workshop)

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors