I currently have a table which contains a column of type dropdown. In a form later on in the process, I would like to duplicate this table as read only, and fill in the values that were filled in previously. The first problem is that I can't auto populate a dropdown with a form variable. So, I tried converting it to a single line field and using the form variable to populate it. The problem is that it didn't fill it by row, it simply listed all values in each field. For example, if the dropdown values were:
Row 1: 3
Row 2: 5
Row 3: 2
...then the values in all three rows in the read-only table (on a different form later on) are:
Row 1: 3; 5; 2;
Row 2: 3; 5; 2;
Row 3: 3; 5; 2;
But instead I simply want 3, 5 and 2 in each row, in that order. Is there any way I can do this?
Thanks!