How to save multiple value in mendix table (one column )?

0
Hi, I want to copy the right column value (multiple) into the left one and show it, but it only able to copy the one last value. What should I do to archive that? When I use the debugger, it able to show multiple value but it doesn't show in the table. The microflow:
asked
1 answers
0

You only have a single cr_shiftmembers object, but you have multiple sc_users. You are iterating the sc_users to copy a value into cr_shiftmembers. This will only hold the value of the last iteration of sc_users. 

 

I think you need to change how you show the data. Instead of starting from cr_shiftmembers, use a datagrid that uses sc_users as the data source. This can then retrieve values from cr_shiftmembers by association.

 

Good luck

answered