Forum Discussion
Anonymous
2 years agoNot applicable
Recurring Events
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 recurr...
- Anonymous2 years ago
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:
Anonymous
2 years agoNot applicable
This is fantastic, thank you so much!