Hello there!
I am trying to filter a gallery in a sharepoint based on a value in another sharepoint list but it's giving me the error that's it's not possible to combine these 2 lists. How can I avoid this?
This part is not working;
&& LookUp(OpleverApp; Label16.Text = UniekNummer; Geopperd) = "true"
Full code;
If(FilterDropDown.SelectedText.Value = "Geen filter";
SortByColumns(
Search(
Filter(
'D-Nummers-OpleverApp';
Order = Gallery2_1.Selected.Order && Deelorder = Left(Gallery2_1.Selected.Deelordernummer; 2)
);
TextInput1.Text;
"Uniek_x0020_nummer"
);
"Uniek_x0020_nummer"
);
FilterDropDown.SelectedText.Value = "Geopperd";
Search(
Filter(
'D-Nummers-OpleverApp';
Order = Gallery2_1.Selected.Order && Deelorder = Left(Gallery2_1.Selected.Deelordernummer; 2) && Verdieping = Dropdown2_1.SelectedText.Result
&& LookUp(OpleverApp; Label16.Text = UniekNummer; Geopperd) = "true"
);
TextInput1.Text;
"Uniek_x0020_nummer"
)
)