Hi @Anonymous ,
Is the Location field a Chioce type column in your SP List?
Do you enable "Allow Multiple selections" option for the Location field in your SP list?
Further, do you want to select all option values within the Location ComboBox when you check the checkbox?
I assume that the Location field is Choice type column in your SP List, and you have enabled "Allow Multiple selections" option for it. I have made a test on my side, please take a try with the following workaround:
Add a Checkbox within the Location Data card, set the OnSelect property of the "Checkbox" control to following:
If(
Checkbox1.Value,
Set(SelectAll, true),
Set(SelectAll, false)
)
Set the Items property of the Location ComboBox to following:
Choices('YourSPList'.Location)
Set the DefaultSelectedItems property of the Location ComboBox to following:
If(
SelectAll,
Table(
{
Value: "North America"
},
{
Value: "Europe"
},
{
Value: "Asia-Pacific"
}
),
Parent.Default
)
Please check the GIF screenshot for more details:
Best regards,