Hi @PrabhuRajaram
I have used the function "DateDiff" to check if the date is within a certain range. If I understood you correct you want to show a label when the date is between today and 15.december 2022? If so you could try out this:


Image to the left is the text that is showed when the user is choosing a date before 15.december 2022 or choosing exactly that date. If the user chooses a date after 15.december 2022 the image to the right will be shown. The code that is used:
If(DateDiff(DatePicker1.SelectedDate;Date(2022;12;15)) >= 0;"Label is visible before 15.december";"Label vil not show")
What the code does is that it checks how mane dates/days it is between the selected date and a manually inserted date. If the output number is before or is number zero then the condition is true. Else it will return the false statement.
Use this code on the Text-property of the label you want the condition to be checked in.
If you dont want any text in the label if the date condition is true or false you can just remove the text between the "".