Hi and Thank you;
I'll try it, however I'm very new.
I'll try, because I'm very new.
I have another problem at the same job.
As I said, a combobox will display the content (email and name) of a previously selected table in a dropdown.
When data from the combobox is selected, it will be displayed in a gallery, with the same columns as the original excel (name, surname, email, etc.), the fact is that I want to add a "select all", I have tried it with a check but we don't have anything in the gallery and I thought that it could be done from "items2 of the gallery itself. How can it be done?
My "item" code in gallery
If(
SelectSheet.Selected.Value = "Sheet1";
Filter(Sheet1Actu; If(IsBlank(PersonSelect.Selected.EMAIL); false; EMAIL in PersonSelect.SelectedItems.EMAIL));
If(
SelectSheet.Selected.Value = "Sheet2";
Filter(Sheet2Actu; If(IsBlank(PersonSelect.Selected.EMAIL); false; EMAIL in PersonSelect.SelectedItems.EMAIL));
If(
SelectSheet.Selected.Value = "Sheet3";
Filter(Sheet3Actu; If(IsBlank(PersonSelect.Selected.EMAIL); false; EMAIL in PersonSelect.SelectedItems.EMAIL))))
)
- SelectSheet: My dropbox where I select the table.
- Sheet1, Sheet2, Sheet3: The options into dropbox.
- Sheet1Actu, Sheet2Actu, Sheet3Actu: Tables in SQL, this tables are automatically updated when Excel is updated.
- PersonSelect: Combobox where I choose the people that will be shown in the gallery.
Any idea?.
Thanks a lot