Hi,
I want to know how I can make multi select on a ComboBox in a PowerApps application on SharePoint Datasource.
If I only select on entry in the ComboBox it's working, but how to deal if i want to select multi entry in the ComboBox.
My SharePoint list contains more than 10000 rows
My ComboBox source is :
Item=Choices('Engagement Tracking'.'Fiscal Year')
This one not working on my sharepoint list to delegation issue I think
Filter(
'Engagement Tracking';
And(
Or(
IsEmpty('Fiscal_Year-ComboBox'.SelectedItems) || IsEmpty('Fiscal_Year-ComboBox'.SelectedItems) || 'Fiscal Year' in 'Fiscal_Year-ComboBox'.SelectedItems
);
BDM.Value = 'BDM-ComboBox'.Selected.Value);
And(
StartsWith(Customer;CustomerSearchBox.Text)
)
)
And this one not working if I select more than one entry in the ComboBox
Filter(
'Engagement Tracking';
And(
Or(
IsEmpty('Fiscal_Year-ComboBox'.SelectedItems) || IsEmpty('Fiscal_Year-ComboBox'.SelectedItems) || 'Fiscal Year' = 'Fiscal_Year-ComboBox'.SelectedItems
);
BDM.Value = 'BDM-ComboBox'.Selected.Value);
And(
StartsWith(Customer;CustomerSearchBox.Text)
)
)
Thank you for your help