Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
How I do in power query write out previous year to date?
I have a Year to date flag using date.isinyeartodate(app_date). I just want the same thing but for last year. Any ideas please?
Solved! Go to Solution.
pls try this
Date.IsInCurrentYear(
Date.AddYears( [app_date],1)
) = true and [app_date] <= Date.AddYears(Date.From( DateTime.LocalNow()),-1)
and try this
[
t1 =
Date.AddYears(Date.From( DateTime.LocalNow()),-1),
t2 = Date.StartOfYear(t1),
Result = [app_date]>= t2 and [app_date]<=t1][Result]
pls try this
Date.IsInCurrentYear(
Date.AddYears( [app_date],1)
) = true and [app_date] <= Date.AddYears(Date.From( DateTime.LocalNow()),-1)
pls try this
Thanks. This gives me the whole of last years view but I need last years year to date
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 36 | |
| 33 | |
| 33 | |
| 29 |
| User | Count |
|---|---|
| 134 | |
| 96 | |
| 78 | |
| 67 | |
| 65 |