Hi @Goodwin
So if that's the case then my previous response is the answer. I have a suggestion just to try something. Do this on your app
Create a button anywhere doesn't matter and type this in the OnSelect
With(
{EntraCheck: Filter('Microsoft Entra IDs', 'Microsoft Entra IDs (Views)'.'Active Users') },
Notify(CountRows(EntraCheck));
);
See what the Notify Tells you as to how many rows you get without a secondary filter
Now let's try with a collection
ClearCollect(myCollection, Filter('Microsoft Entra IDs', 'Microsoft Entra IDs (Views)'.'Active Users'));
Notify(CountRows(myCollection));
Also note, that depending on the Connector being used it can impact it.
Lastly, let's try a totally different approach, using the Office365User connector. In the App under data section, select add data, and add the Office365Users Connector.
Now, in your ComboBox control set the Items Property to and see what you get.
Filter(Office365Users.SearchUser(), AccountEnabled = true)
Let me know if any of this helps or you have other questions.
If I have helped you, I would really appreciate if you please Mark my answer as Resolved/Answered, and give it a thumbs up, so it can help others
Cheers
Thank You
Michael Gernaey MCT | MCSE | MCP | Self-Contractor| Ex-Microsoft
https://gernaeysoftware.com
LinkedIn: https://www.linkedin.com/in/michaelgernaey