Here's one of those things... Probably some silly mistake I've made...
If I run Countrows on my gallery, the value it returns is 100, if the gallery draws data from a SP list, or 216 if the gallery draws data from a collection from the same SP list. Here's how:
Case 1
MyGallery Items: Filter(MyList, ColumnA=Value1)
Countrows(MyGallery.AllItems)=100
Case 2
MyCollection = MyList
MyGallery Items: Filter(MyCollection, ColumnA=Value1)
Countrows(MyGallery.AllItems)=216
Note: the SP list has 288 items total; the row limit setting for the app is 2000
Thanks for shedding some light!