Hello,
I had some help setting up a Modern Date Picker to only allow dates selected if they match the days of the week that you select in a Combo Box. I thought everything was working fine but now see when the Form is submitted it only sends that last day that was selected. Not multiple days. Hopefully this is something that can be acheived. Here is how I have it setup in my form.
Multi-Select WeekDayComboBox item is 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}
)
WeekDayDataCard Update set to:
WeekDayComboBox.Selected.Value
ModernDatePIcker OnChange set to:
If(
!(Weekday(Self.Value) in WeekdayComboBox.SelectedItems.ID),
Reset(Self);Notify("Date does not match Activity Meeting Days.")
)
These formulas work find in the app but only sends the last day selected in the Multi-Select WeekDayComboBox. I need them all to send.
Any help/assistance would be appreciated.
Thanks,
Collin