Re: How to return multiple columns from a LookUp functin?
Hi all,
I am thinking about similar situation, but I need separate columns.
Right now the code looks like:
ClearCollect(
colPeopleMaster,
AddColumns(
colPeople,
"name", LookUp('People Details', GPN = colPeople[@sap_coo_gpn], Name),
"email", LookUp('People Details', GPN = colPeople[@sap_coo_gpn], Email)
))
I have some collections where I need to pull 5-7 different columns, is there a way to do it in one LookUp?
Thanks!
Kornel