
Hi,
I am running a powerapp in online and offline. I use the following formula to filter the gallery depending upon the type of connection avaiable:
If(Connection.Connected,
Filter('online SharePoint Datasouce', ProjectId = Value(Projectid))
,
Filter('Local Collection', ProjectId = Value(Projectid))
)If I use only one filter at a time for either online data source o local collection, all columns show up in the gallery fields. But when uisng them together like the above formula, many columns like created, created by, etc don't show up. Any suggestions on how I could make this work?