I am wanting to create a collection based on a dataverse table.
I have created views, but these don't seem to be very easy to use in this circumstance. I was able to return the entire set of columns but the lookup fields didn't have any values.
I have been trying ShowColumns to get the few column values I need from the table 'QPContainers'. I strike an issue with a column called 'Location' as it is a lookup column to a table called 'QP Location'.
This worked to get a list of containersIDs
Collect(
cltPickUpView,
ShowColumns(
Filter(QPContainers, PickUpDT = Blank()),
"qp_containerid"
)
)
I thought addColumns might be required here but I can't figure out how to use it.
Any help would be appreciated.
Thanks
Rosie