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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Juliana
New Member

Counting Submission and Closure Trend by Month

Hi There,

 

I have a table with the following columns and values:-

 

ID | SubmissionDate | ClosureDate | OtherColumns

1   | 21-12-2016        | 23-03-2017  |

2   | 12-01-2017        | 01-04-2017  |

 

Any idea how to create a graph based on the count of submission and closure by different months?

 

 

 

 

1 ACCEPTED SOLUTION
v-huizhn-msft
Microsoft Employee
Microsoft Employee

Hi @Juliana,

You create a Calendar table including all the dates, please click "New Table" under modeling type the following formula on home page. 

Dates=Calendar(MIN(Table[SubmissionDate]),MAX(ClosureDate))


Then create a calculated month column using the formula.

Month=MONTH(Dates[Dates])


Create a measure using the formula.

result=Calculate(
	count(Table[ID]),
		FILTER(Table,
				COUNTROWS(FILTER(VALUES(Dates[Dates]),
						Project[SubmissionDate] <= Dates[Dates] &&
						Project[ClosureDate] >= Dates[Dates] ))
				> 0)
		)


Create a table visual, select the Table[Month] and [result] as value levels.

Best Regards,
Angelia

View solution in original post

1 REPLY 1
v-huizhn-msft
Microsoft Employee
Microsoft Employee

Hi @Juliana,

You create a Calendar table including all the dates, please click "New Table" under modeling type the following formula on home page. 

Dates=Calendar(MIN(Table[SubmissionDate]),MAX(ClosureDate))


Then create a calculated month column using the formula.

Month=MONTH(Dates[Dates])


Create a measure using the formula.

result=Calculate(
	count(Table[ID]),
		FILTER(Table,
				COUNTROWS(FILTER(VALUES(Dates[Dates]),
						Project[SubmissionDate] <= Dates[Dates] &&
						Project[ClosureDate] >= Dates[Dates] ))
				> 0)
		)


Create a table visual, select the Table[Month] and [result] as value levels.

Best Regards,
Angelia

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