Hi,
I would like to do a lookup on each item in the item collection and add the result of the lookup to a column in the collection. I am still all new to this, but i am not sure how to go about it or if this is the best way.
this is as far as i have gotten without much luck.
Collect(Test1,Filter('List', Ref = Text(ThisItem.ID)));
ForAll(AddColumns(Test As ThisExportToPDF, "GLCodes", LookUp('List that contains requied data',Title = ThisExportToPDF.ExpenseType)))
Any help is appreciated.
Thank you
Solved! Go to Solution.
HI @arturdjali ,
You seem to be a very long way there:
ClearCollect(
Test1,
AddColumns(
Filter(
Test,
Ref = Text(ThisItem.ID)
) As ThisExportToPDF,
"GLCodes",
LookUp(
'List that contains requied data',
Title = ThisExportToPDF.ExpenseType
)
)
)
HI @arturdjali ,
You seem to be a very long way there:
ClearCollect(
Test1,
AddColumns(
Filter(
Test,
Ref = Text(ThisItem.ID)
) As ThisExportToPDF,
"GLCodes",
LookUp(
'List that contains requied data',
Title = ThisExportToPDF.ExpenseType
)
)
)
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
181 | |
47 | |
46 | |
34 | |
33 |
User | Count |
---|---|
260 | |
87 | |
79 | |
68 | |
67 |