Hello Power Apps Community,
I have previously received help with limiting my modern date picker to only allow selected dates if they match the weekdays selected from a ComboBox. This was done by my ComboBox's Item Property set to:
Table(
{Value:"Sunday",ID:1},
{Value:"Monday",ID:2},
{Value:"Tuesday",ID:3},
{Value:"Wednesday",ID:4},
{Value:"Thursday",ID:5},
{Value:"Friday",ID:6},
{Value:"Saturday",ID:7}
)
Then the OnChange of the Date Picker was set to:
If(
!(Weekday(Self.SelectedDate) in cbActivityMeetingDays_NR.SelectedItems.ID),
Reset(Self);
Notify("Date day must match Activity Meeting Day(s).")
)
This is not working now. I tried creating a new ComboBox, New Modern Date Picker and a Classic Date Picker. Still does not work. Could something have been updated or not working? Is there another way to accomplish this?
Thanks,
Collin