Hi!
In my App I want to count certain rows in my gallery 'BrowseGallery' (all records, number of active records etc..) on the Home Screen however my Gallery is contained in a subsequent Browse Screen.
I'm trying to get around the fact that I want the items to display when a user first opens the App (so the app won't of navigated to the Browse Screen at this point). What I've tried so far will only work once the navigation to the Browse Screen has taken place.
Examples of a couple of approaches so far:
-Creating a collection OnVisible in the Home Screen, then counting that -
CountRows(SMCollection)
- Counting the Gallery direct
CountRows(Filter(BrowseGallery1.AllItems, IsBlank(Resolved)))
I did try to count the List items instead but can't seem to work around the Delegation Warning when I count all records and also don't seem to be able to select specific columns just the list itself.
I feel like there's something simple I'm missing! Could anyone please help? - Sorry the apps I've built previously have always been very basic and I'm trying to get a bit more clever with approaches!