Hi @Anonymous ,
Do you want to add a "Blank" option within your Dropdown boxes?
Based on the needs that you mentioned, I think the Concat function and Split function could achieve your needs without set up collections. I have made a test on my side, please consider take a try with the following workaround:
Set the Items property of the Dropdown control to following:
Sort(
Split(
Concat(Distinct(StudentInfo, 'Stu Name'), Result & ","),
","
),
Result
)
On your side, you may need to type the following formula within the Items property of the Family Dropdown box:
Sort(
Split(
Concat(Distinct('Your Excel Table', Family), Result & ","),
","
),
Result
)
Please take a try with above solution, hope it could solve your problem.
Best regards,