The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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!
Solved! Go to Solution.
Try:
Measure =
DATEDIFF( TODAY(), DATE(YEAR(TODAY()), 12, 31), DAY)
Thank you, this works perfectly!
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.
User | Count |
---|---|
16 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
25 | |
13 | |
12 | |
8 | |
8 |