
Announcements
Hello,
I have two seperated collections.
One is pulling information from sharepoint list. Another is also, however I clear it because I need only Columns:
ClearCollect(Testavimas, Filter(Approvers, Role.Value=Dropdown2.SelectedText.Value))
ClearCollect(Checklist,'Check List');
Clear(Checklist);
Testavimas and Checklist Collections has information I need - Role and Action name.
However I need to transfer Test Rows to Checklist. Because later I will submit all rows to 'Check List' list in sharepoint.
So the Idea is ForAll Testavimas to collect data to checklist.
Checklist is empty since I used Clear.
Then I run this action:
ForAll(Testavimas, Collect(Checklist, {Role: Role}, {Action: Action}, {Code: Dropdown2.SelectedText.Value}))
Testavimas displays great values in gallery:
Seems working however when I tried to display Checklist into Gallery it shows empty and existing many values but it should display only 5 same as in Testavimas collection.
My problem is that I probably don't use ForAll correctly. Also Collect.
I just want to trasnfer all given rows from testavimas to checklist to be able to display checklist into gallery and later to be able to submit all rows to 'check list' sharepoint list.
I just used same collection instead since it's relevant so this issue is resolved.
However I still would love to know how to transfer one collection information to another.