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
cmccully
Helper I
Helper I

Days Between Current Date and End of Current Year

Hello

 

I am trying to find the difference in days between the current date today() and the end of the current year. All the functions I am finding want a table field as an argument. But I am not concerned with my dataset for this purpose.

 

As an example, today is 02/19/2020. there are 316 days until the end of the year. I want a measure that will show 316 today, 315 tomorrow, etc. Then roll over to 365 on january 1st 2021.

Thank you for your help!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Try:

Measure = 
DATEDIFF( TODAY(), DATE(YEAR(TODAY()), 12, 31), DAY)

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Try:

Measure = 
DATEDIFF( TODAY(), DATE(YEAR(TODAY()), 12, 31), DAY)

Thank you, this works perfectly!

Anonymous
Not applicable

Hi @cmccully 

Measure = 
DATEDIFF( TODAY(), DATE(YEAR(TODAY()), 12, 31), DAY)

Incase you want it for your date column.

Measure = 
DATEDIFF( min(Table[Date]), DATE(YEAR(min(Table[Date])), 12, 31), DAY)

 

Thanks & regards,
Pravin Wattamwar
www.linkedin.com/in/pravin-p-wattamwar

If I resolve your problem Mark it as a solution and give kudos.

 

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.

Top Solution Authors