This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hello,
I have this table of static dates that are recurring year by year. I want to show these dates in a calender visual but I want to only display the current year, since these dates are recurring yearly I would like to make a measure which replaces the year in this table to the current year of viewing. Also if there is a flag I can create to show when the current date is beyond a deadline date that would be amazing, basically just compare todays date to the date in the table and Flag if it is Future, Past or Present.
Thanks for your help!
Solved! Go to Solution.
you should be able to paste this into powerquery the only thing you need to change is #"Changed Type" to whatever the previous step in your table is called
CurrentYear = Date.Year(DateTime.LocalNow()),
CurrentDate = DateTime.Date(DateTime.LocalNow()),
TransformDate = Table.TransformColumns(#"Changed Type",{{"Dates", each #date(CurrentYear, Date.Month(_), Date.Day(_)), type date}}),
AddStatusColumn = Table.AddColumn(TransformDate, "Status", each if [Dates] < CurrentDate then "Past" else if [Dates] = CurrentDate then "Present" else "Future")
in
AddStatusColumnif you need help getting it to work respond with the tailend of your current code in powerquery and I'll help you out.
I did test the code out and it worked
Starting Data:
result:
This is fantastic, thank you so much!
you should be able to paste this into powerquery the only thing you need to change is #"Changed Type" to whatever the previous step in your table is called
CurrentYear = Date.Year(DateTime.LocalNow()),
CurrentDate = DateTime.Date(DateTime.LocalNow()),
TransformDate = Table.TransformColumns(#"Changed Type",{{"Dates", each #date(CurrentYear, Date.Month(_), Date.Day(_)), type date}}),
AddStatusColumn = Table.AddColumn(TransformDate, "Status", each if [Dates] < CurrentDate then "Past" else if [Dates] = CurrentDate then "Present" else "Future")
in
AddStatusColumnif you need help getting it to work respond with the tailend of your current code in powerquery and I'll help you out.
I did test the code out and it worked
Starting Data:
result:
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 26 | |
| 25 | |
| 24 | |
| 21 | |
| 14 |
| User | Count |
|---|---|
| 53 | |
| 47 | |
| 23 | |
| 18 | |
| 18 |