In an earlier post I had an issue with a collection that is Clearcollected from a table and shown in a gallery.
If I wanted to get to the record from the gallery that did not always work.
When viewing the collection in powerapps I noticed that there is an automatic Guid column in the table and thuis in the collection. In my case it is called cra27_diereventid. The Table is DierEvent. The Gallery is GalleryDierEvent
So if I do:
LookUp(DierEvent;cra27_diereventid=GalleryDierEvent.Selected.cra27_diereventid)
I get to the record and can do anything I like with it.
But at one point connection between gallery Item and record seemed lost and things stopped functioning.
I discovered that the line above had automatically changed to
LookUp(DierEvent;DierEvent=GalleryDierEvent.Selected.DierEvent)
Which does NOT function. No errors but no go.
Does this mean that everytime I publish my app from now I have to check if this line has not been "improved"?