Hello community,
I have a calendar made out of labels in a gallery. I want to color the past dates with a different color so you see when dates are in the past.
I have on he Fill property of the labels :
If(DateValue(Concatenate(Label.Text,"/",Text(Year(Now())))) < Today(),Gray,Normal color)
So far its working for the dates but when we get near December, you see that January 2022 is also filled out to Gray as its still recognizes that 01/01/2022 is < Today().
I need help with figuring out a formula to only filter past dates but leave the dates for January next year.
Appreciate your help!