176k views
0 votes
Convert excel column to comma separated list.

1 Answer

3 votes

Final answer:

To convert an Excel column to a comma-separated list, you can use the TEXTJOIN function. Here's an example.

Step-by-step explanation:

To convert an Excel column to a comma-separated list, you can use a formula or a combination of functions. Here's an example:

  1. Assume your column of data is in column A, starting from cell A1.
  2. In cell B1, enter the formula: =TEXTJOIN(", ",TRUE,A:A). This formula will combine all the values in column A, separated by commas.
  3. Copy the formula down the column to include all the values in column A.
  4. Now, column B will contain the comma-separated list of values from column A.

Remember to replace , with the appropriate separator if you want to use a different character instead of a comma.

Learn more about Convert Excel column to comma-separated list

User Denis Zavedeev
by
8.2k points