|
New function Join Lists. Now you can join columns from two lists
together. For example, first list can contain emails: account1@domain1.com account2@domain2.com second list can contain names, dates and other info: John,01-01-2007,123456 Bob,02-02-2007,023424 result will be: account1@domain1.com,John,01-01-2007,123456 account2@domain2.com,Bob,02-02-2007,023424 You can choose which columns to extract from source lists. |