Using transfer data with list view data

  • 24 November 2022
  • 2 replies
  • 21 views

Badge +1

Hi, I would like to ask is that any way that I can transfer all the data from the list view to a rich text box? I could successfully transfer the latest row but not the entire list view row.

 

27215i4F7C558E32174605.png

27219i26C29FE8A448C99C.png

27217i1D9D8AC947835B86.png

After pressing the Click button

27218i8C2E57B6342C808A.png

Thank you.


2 replies

Userlevel 3
Badge +10

One possible implementation is to add another data label 'details concatenated' for example, then add a rule that:



when the {Details Rich Text} is changed


transfer data to {details concatenated} with settings '{Details Rich Text}; {details concatenated}'



then you can use the {details concatenated} at the end, where its values may look like:


testing of testing2; testing3 of testing4, testing 5 or testing6



Or if this is SQL service instance, perhaps a stored procedure can do the aggregation for you and return the desired string.

Userlevel 5
Badge +12

I would recommend that you do a "for each item" loop when the button is clicked and, for each iteration, do a data transfer that concatenates the current iteration value with the rich text box value. let me know if that makes any sense at all, I can elaborate further if not.

Reply