Hi @collinktx ,
I've made a test for your reference(Modern Date Picker):
1\Set the combobox(ComboBox1)'s items property 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}
)
2\Set the Modern Date Picker's OnChange property to:
If(
!(Weekday(Self.Value) in ComboBox1.SelectedItems.ID),
Reset(Self);Notify("The weeknum of the date you selected is not allowed!")
)
Best Regards,
Bof