I am attempting to check if a dropdown box has an option selected but cannot find the syntax.
My test is to simply update the context of a label to true/false but Icannot work it out
I am placing this on the OnChange event of the dropdown.
If(IsBlank(SelectedRegion.Selected),UpdateContext({Test:true}),UpdateContext({Test:false}))
I also tried SelectedRegion.Selected.Value and SelectedRegion.Selected.Value=""
Does IsBlank work with dropdows? I have tried IsEmpty also.
I need this for comboboxes with multiple choices also - Iassume once I get it right I will simply need to change from Selected to SelectedItems for a multiple choice option.
Any assistance is appreciated.