I'm trying to filter a datasource from a SQL Server view
I have a data Connection.
I can bring back an unfiltered list perfectly using
- ClearCollect(testCollectAll, MySQLServerDataSourceOnView,);
However at no stage do I need an unfiltered list (the number of results is way to large)
I am using this Power FX code to filter
- ClearCollect(testCollectOne, Filter(MySQLServerDataSourceOnView, Site_Code = "ABC"));
It returns the correct number of rows filtered correctly, however there is no data in any of the columns other than Site_Code
Also this also changes my already proven to be working unflitered list to only return results from the Site_Code column
How can i bring back data in all columns on this filtered list?
Thanks
L
(i have no choice on the datasource being SQL Server so please do not direct me to use something else as a solution)
(i cannot show any images of the data due to confidentiality rules where I work)