Hello I have a date picker with two button, one button to move forward one day and the other to move back a day but I can't do a good function to make it work, I have set two var for the two button true to move foward and false to move back and i've put this in my date picker default date
Switch(varThisDay;
true; Date(Year(Today());Month(Today());Day(Today()));
false; DateAdd(Date(Year(Today());Month(Today());Day(Today())); -1; Days))
but It don't work like I want, for exemple today is the 17 but when I click and the button to move foward it does nothing because it is set to go at today and the button to move back just move back one day and dont move back again if I want to go at the day 15
and I don't find how to maki this work
Any chance you could share how this is accomplished? I would love to have the functionality to advance a date slider by a month instead of individually selecting/setting the start date and end date.
Thank you it works
Set the OnSelect of your forward button to:
UpdateContext({lclDate: DateAdd(Coalesce(lclDate, Today()), 1)})
Set the OnSelect of your backward button to:
UpdateContext({lclDate: DateAdd(Coalesce(lclDate, Today()), -1)})
Then set the DefaultDate on your date chooser to:
Coalesce(lclDate, Today())
I hope this is helpful for you.
WarrenBelz
791
Most Valuable Professional
MS.Ragavendar
410
Super User 2025 Season 2
mmbr1606
275
Super User 2025 Season 2