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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
spb
Frequent Visitor

Date count in the month

Wish to count the number of starts in the month of the start date.. 

eg

ID  Start Date 

1 12/2/22

2 1/2/22

4 6/4/22

6 18/2/22

 

Required answer:

Starts:

Feb 22 - 3

Mar 22 - 0

Apr -1

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @spb ,

Assuming you have your table loaded in power query like below:

Step 1:

Dax_Noob_0-1663048637957.png

Step 2:  Add a new calculated column in the same table, your table should now look like the screenshot below:

Month & Day = FORMAT(Sheet1[Start Date],"MMM")& " " & YEAR(Sheet1[Start Date])

Dax_Noob_1-1663048692678.png


Step 3: Create a new calculated table:

Table Count = 
ADDCOLUMNS(
SUMMARIZE(Sheet1,Sheet1[Month & Day]),"Frequency",COUNT(Sheet1[Month & Day]))

 
Step 4 : Final Output

Table Count = 
ADDCOLUMNS(
SUMMARIZE(Sheet1,Sheet1[Month & Day]),"Frequency",COUNT(Sheet1[Month & Day]))


Hope that helps!

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @spb ,

Assuming you have your table loaded in power query like below:

Step 1:

Dax_Noob_0-1663048637957.png

Step 2:  Add a new calculated column in the same table, your table should now look like the screenshot below:

Month & Day = FORMAT(Sheet1[Start Date],"MMM")& " " & YEAR(Sheet1[Start Date])

Dax_Noob_1-1663048692678.png


Step 3: Create a new calculated table:

Table Count = 
ADDCOLUMNS(
SUMMARIZE(Sheet1,Sheet1[Month & Day]),"Frequency",COUNT(Sheet1[Month & Day]))

 
Step 4 : Final Output

Table Count = 
ADDCOLUMNS(
SUMMARIZE(Sheet1,Sheet1[Month & Day]),"Frequency",COUNT(Sheet1[Month & Day]))


Hope that helps!

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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
Top Kudoed Authors