I have a dropdown box with a little bit more complicated filter, which works fine on App page.
I create exactly the same dropdown in a gallery and it shows the the right amount of items but the lines are blank.
I checked if it displays the right items, by changing the dropdown, as i know what values there should be and save the records. This all works fine. But i do not understand, wyhy i can not see anything in the dropdown in the gallery.
It was able to see all the values when the filter was not that complex. But i need this filter and the dropdown with the same filter outside the gallery does what it should.
Any idea where problem could be.
The Filter now looks like:
Filter(LookUp(Benutzers,Fullname=User().FullName).'Cases (cr8ec_Projekt_Zugehoering_ref)', Projekt.'Projekt (cr8ec_projektid)' in Filter(Projekts, Kunde.Kundennummer = SelectProjekt_kosten.Selected.Kundennummer).'Projekt (cr8ec_projektid)')
This part LookUp(Benutzers,Fullname=User().FullName).'Cases (cr8ec_Projekt_Zugehoering_ref) gives me all "Cases" a user is working for.
If i change the filter to:
Filter(Cases, Projekt.'Projekt (cr8ec_projektid)' in Filter(Projekts, Kunde.Kundennummer = SelectProjekt_kosten.Selected.Kundennummer).'Projekt (cr8ec_projektid)')
All items are visible.
As the complex filter generally works, but i just can not read the items, i do not understand what the problem is?