I am new to using Dataverse with teams as I have used SharePoint before.
When I create a collection from a Dataverse table I am having a couple of issues, and this is for all tables.
If you see the below code this works fine. It brings in all 44 records with no problems at all.
ClearCollect(coll_Districts, ShowColumns(Districts, 'District Name', 'District Short Name'));
The main issue is when I try to bring in more than 2 columns of data. If I use the below code, both the District Name and District Short Name columns go blank and the Division Name is all that has data.
ClearCollect(coll_Districts, ShowColumns(Districts, 'District Name', 'District Short Name','Division Name'));
These are all text fields and the same thing happens if I just do this.
ClearCollect(coll_Districts,'Districts');
Only the Division Name shows data.