I have the following Problem:
I want to filter a list of Events that happened with a car eg "accident" "driver change" and so on.
but when i filter the list to put the results in a gallery with:
Filter(Event_Database; LicensePlate = varCar.LicensePlate)
I get incomplete results. Some rows are there some are not.
varCar is one Item of my car List that got selected before.
The column LicensePlate in the Event_Database is a Lookup on the Car List so there should not be any Typos.
the list has 429 Items right now so this should not be a delegation problem.
I tried to load the whole list into a local variable and still have the same problem.
ClearCollect(varEventList; Event_Database)
somebody has a hint for me why Filter() is not giving me the rows even if i try it local?
The items are on the list I checked also the local collection by just doing:
Last(varEventList)
And the last item shows up with no problems.
I drives me crazy that some rows are given back but others not.
Thank you for your Help