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
a_mixed_life
Resolver I
Resolver I

CALCULATE Days Left in the current month

Was wondering if anyone have the DAX calculations to count how many days left in a current month?

Kris
1 ACCEPTED SOLUTION

Workdays Left in Month = COUNTROWS(
	FILTER(
		CALENDAR(
			TODAY(),
			EOMONTH(TODAY(), 0)
		),
		WEEKDAY([Date], 2) < 6
	)
)

...assuming that by "working" days you mean Monday through Friday.

 

The formula I gave previously does not count today as one of the days left in the month. This one does. If you don't want it to count today, you just have to move the start date to tomorrow:

 

Workdays Left in Month = COUNTROWS(
	FILTER(
		CALENDAR(
			TODAY() + 1,
			EOMONTH(TODAY(), 0)
		),
		WEEKDAY([Date], 2) < 6
	)
)




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

Proud to be a Super User!




View solution in original post

5 REPLIES 5
KHorseman
Community Champion
Community Champion

Days Left in Month = INT(EOMONTH(TODAY(), 0) - TODAY())





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

Proud to be a Super User!




Thanks! Now let me expand on this, how would I calculate "Working" days?

Kris

Workdays Left in Month = COUNTROWS(
	FILTER(
		CALENDAR(
			TODAY(),
			EOMONTH(TODAY(), 0)
		),
		WEEKDAY([Date], 2) < 6
	)
)

...assuming that by "working" days you mean Monday through Friday.

 

The formula I gave previously does not count today as one of the days left in the month. This one does. If you don't want it to count today, you just have to move the start date to tomorrow:

 

Workdays Left in Month = COUNTROWS(
	FILTER(
		CALENDAR(
			TODAY() + 1,
			EOMONTH(TODAY(), 0)
		),
		WEEKDAY([Date], 2) < 6
	)
)




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

Proud to be a Super User!




@KHorsemanI'm trying to change it to calculate how many workdays passed on current month, any hint?

Awesome! Thank you!

Kris

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.