Hello,
I have a Gallery that should display a list of properties dependant on what project is selected in another Gallery.
During day to day use it will be required to have this gallery filtered to ensure those using the app see only the outstanding properties that need to be worked on. To that end I have a Toggle that applies the relevant filter when set to false.
When the app displays the gallery whether or not the filter is on or off it is unable to display the details of each record in the gallery (see screenshots below). It does however display the correct number of entries in the gallery and selecting these entries does allow the form on the next screen to identify the correct selected item using a lookup of the Gallery in questions selected item.

The curious part, however, comes when I remove the Item entry for this value (below), replace it with the true_value of the formula only.
Gallery Item:
If(
Toggle1.Value,
galProjects.Selected.'PSWO Project Properties',
Filter(galProjects.Selected.'PSWO Project Properties','Rectification Confirmed'='Rectification Confirmed (PSWO Project Properties)'.No && 'Issue at Property'<>'Issue at Property (PSWO Project Properties)'.No)
)
It then displays correctly, and even more perplexing is when I undo this change the whole thing functions correctly (see below screenshot) until I next close and open the app or attempt to manually effect a change in the Item formula.


For reference the item in the Gallery Label is: Concatenate(Text(ThisItem.'Property Name/Number'),", ",Text(ThisItem.'Address Name'),", ",Text(ThisItem.Postcode))
I would be very interested to know if there is any way of preventing this issue as at present when the App is run it is unable to display entries in the gallery correctly. Potentially they may be a way to quickly switch the Item value for the Gallery on startup to get it to display and function correctly.
Any help would be greatly appreciated.
Craig