Hi,
I have multiple collections and it doesn't seem to work as expected.
OnVisible property of the screen is
ClearCollect(rosterList,'[dbo].[vw_RosterDetails]');
ClearCollect(weeklyrosterList,SortByColumns(Filter(rosterList,StartDate <= rosterDatePicker.SelectedDate && EndDate >=rosterDatePicker.SelectedDate),"StartTime",Ascending));
ClearCollect(ItemsGrouped,GroupBy(weeklyrosterList,"Name","StartTime","EndTime","StartDate","EndDate","ContactNo","EmailId","SkypeId","Processes"));
ClearCollect(ConcatenatedProcessNames,AddColumns(ItemsGrouped,"ConcatenatedProcess",Concat(Processes,ProcessName," , ")))
It only displays the concatenated process which is the output of the last collection and no other data is displayed.
Thanks in advance.
Hi @rsanya,
That is expected, when I look at your code I see you are using this onVisible of the screen:
You are using rosterDatePicker.SelectedDate this will be blank always onVisible property of the screen.
ClearCollect(rosterList,'[dbo].[vw_RosterDetails]'); // This should give you result
ClearCollect(weeklyrosterList,SortByColumns(Filter(rosterList,StartDate <= rosterDatePicker.SelectedDate && EndDate >=rosterDatePicker.SelectedDate),"StartTime",Ascending)); // Chnage filter condition
ClearCollect(ItemsGrouped,GroupBy(weeklyrosterList,"Name","StartTime","EndTime","StartDate","EndDate","ContactNo","EmailId","SkypeId","Processes")); // This should work
ClearCollect(ConcatenatedProcessNames,AddColumns(ItemsGrouped,"ConcatenatedProcess",Concat(Processes,ProcessName," , "))); // This should work
I hope this resolved your issue if you see any challenge/need further help please let me know I am always happy to do it for my community.
Regards,
Krishna
If this post helps you give a 👍 and if it solved your issue consider Accept it as the solution to help the other members find it more.
Proud to be a Super User!
Regards,@KrishnaV all the collections gives me the output but at the end it displays result only for the last collection. As in it displays only the processes and no other data.
Hi @rsanya ,
I am confused, you are telling me gives output and says only the last collection. may I know what you see when see the collection in view menu?
click on View-> collections -> check eacj collection and see what is the value for each collection.
Share me the screenshots to help you better.
I hope this resolved your issue if you see any challenge/need further help please let me know I am always happy to do it for my community.
Regards,
Krishna
If this post helps you give a 👍 and if it solved your issue consider Accept it as the solution to help the other members find it more.
Proud to be a Super User!
Regards,Hi @rsanya ,
I just want to follow up with you on this issue to see is it resolved or still you see any challenges.
If you see any challenge/need further help let me know I am always happy to help.
Regards,
Krishna
If this post helps give a 👍 and if it solved your issue consider Accept it as the solution to help the other members find it more
Proud to be a Super User!
Regards,User | Count |
---|---|
194 | |
126 | |
89 | |
48 | |
42 |
User | Count |
---|---|
281 | |
161 | |
137 | |
82 | |
77 |