I have 3 collections that is created like this:
ClearCollect(col_Name;Split(TextInput5.Text;Char(10)))
ClearCollect(col_ID;Split(TextInput5_1.Text;Char(10)))
ClearCollect(col_UserName;Split(TextInput5_2.Text;Char(10)))
How can i combine these 3 collections into a new collections with 3 columns (Name, ID, UserName)?
I cant see how i can lookup a value from one column and map that...