Convert List Indexs to Vertical List Label

LIST DATA
Index
TABLE UI
list
HOW I NEED IT
How
CONCLUSION
I would like the list information to be displayed in vertical order with a single label. Is this possible?
For example, index 1 "Ben", then Index 2 "Jamie" underneath and so on.
I need to create a loop of some sorts as more users can be added via database. I know I can put multiple labels in vertical order and just set it to said index but if there was 30 users I would need 30 labels.
Is there an extension for this feature I am looking for?

Easiest method.

  • Reorganise your data
    • so instead of:
[Ben,Jamie,Tyler],[1000,200,0], ....
  • you have:
[Ben,1000,...],[Jamie,200,...],[Tyler,0,...]

then use the Tableview extension, convert your list of lists to a csv table.

2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.