
Announcements
Hi @CMSGuy,
Unfortunately, that is not delegable to SQL.
However, you have a couple of options.
1. Write a stored procedure in SQL that accepts the WEDBID as a parameter and returns the count of records matching that condition.
Call this stored procedure from Power Apps using a custom connector or the SQL connector if available.
2. Using a collection
ClearCollect(FilteredCollection, Filter(Financials, WEDBID = SelectedRecord.WEDBID));
CountRows(FilteredCollection)