Create a list for each elements present in a list.
Dear All, Trying to create a list for each items present in a list. Already have,MasterList = {"test1", "test2"}; Required,Append the string "value" to each items present in the MasterList and have to make each item as an individual list. test1value = {};test2value = {}; Thanks, Alex.