March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
For today I'm using
Today= DATE(YEAR(NOW()),MONTH(NOW()), DAY(NOW())
How would I display Today last year? I was thinking
TodayPrevYear = DATE(YEAR(NOW()-1),MONTH(NOW()), DAY(NOW())
But I get an error.
Can someone show me the correct formula to use for Today Last year?
Solved! Go to Solution.
Perhaps something like:
Measure = DATE(YEAR(NOW())-1,MONTH(NOW()), DAY(NOW()-1))
You have to subtract 1 from the result of the YEAR function not inside the argument!
If you do YEAR ( NOW()-1 ) as you you've done you are basically asking for the function to return the YEAR of NOW()-1
which would be yesterday this year - thats why you have to get the year first and then subtract 1
TodayPrevYear = DATE ( YEAR ( NOW () ) - 1, MONTH ( NOW () ), DAY ( NOW () ) )
And same if you want yesterday previous year
Obviously for Day it won't matter if you subtract 1 inside or not
YesterdayPrevYear = DATE ( YEAR ( NOW () ) - 1, MONTH ( NOW () ), DAY ( NOW () ) - 1 )
Hope this helps!
Hi, You can also obtain:
Today-inPreviousYear = EDATE(TODAY(),-12)
Yesterday-inPreviousYear = EDATE(TODAY(),-12)-1
You have to subtract 1 from the result of the YEAR function not inside the argument!
If you do YEAR ( NOW()-1 ) as you you've done you are basically asking for the function to return the YEAR of NOW()-1
which would be yesterday this year - thats why you have to get the year first and then subtract 1
TodayPrevYear = DATE ( YEAR ( NOW () ) - 1, MONTH ( NOW () ), DAY ( NOW () ) )
And same if you want yesterday previous year
Obviously for Day it won't matter if you subtract 1 inside or not
YesterdayPrevYear = DATE ( YEAR ( NOW () ) - 1, MONTH ( NOW () ), DAY ( NOW () ) - 1 )
Hope this helps!
Hi, You can also obtain:
Today-inPreviousYear = EDATE(TODAY(),-12)
Yesterday-inPreviousYear = EDATE(TODAY(),-12)-1
How would you today in previous year for FiscalDayOfYear ?
Perhaps something like:
Measure = DATE(YEAR(NOW())-1,MONTH(NOW()), DAY(NOW()-1))
Thank you Greg, so helpful.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |