Insert Into()
Hi, I have a number of lists, of varying length, and I'd like to combine all the items in the lists into one list. For example: list1 = {"a", "b", "c"};
list2 = {"d", "e"};
Want to create
list3 = {"f", "g", "h", "i"};
.... the number of lists ranges from 7 to 10.list = {"a", "b", "c", "d", "e"};
I have been creating the final list Insert Into(list1, list2);
Insert Into(list1, list3);
.... and so o
...