We are building a PowerApps screen with a data table using a collection as the data source for the Items property.
In our onVisible event of the screen we create the collection like this:
ClearCollect(
collTrackedSales,
Filter(
eBayIT_Item_Management,
TCode = "A02"
)
)
eBayIT_Item_Management
is the actual SharePoint list, and this includes a lookup column to another list called ItemCategories ...
The problem is that the column in the data table just shows [object Object]
in that column...
I have created another data table on the screen just using the SP List as the source and it works fine...
Here are the images showing the problem:
in the above picture you can see there is no problem displaying the categories field.
In the below picture you can see there is an issue when using a collection as the source of the 2nd datatable:
So what can I do in order to show the actual values in that list instead of object Object
?