Good Afternoon
I have the following worksheet (sheet1)
im needing to split any rows that contain a comma delimited value in the desc column into a new line and maintain all other other values. Is there a easy way?
(you can see that the 1st row desc contains the values blue,red,yellow
this row would be split into 3 rows. See second example below. the output would be a new sheet2.
Thanks
I have the following worksheet (sheet1)
im needing to split any rows that contain a comma delimited value in the desc column into a new line and maintain all other other values. Is there a easy way?
(you can see that the 1st row desc contains the values blue,red,yellow
this row would be split into 3 rows. See second example below. the output would be a new sheet2.
Thanks
type | case | name | desc | mstr | user | date | date1 | time |
Inactive | a | chev | blue,red,yellow | a | Tom | 04/22/2020 at 01:05:00 AM (GMT-0500) | 04/21/2020 at 02:28:46 PM (GMT-0500) | 2:57:15 |
Active | a | ford | green | b | Sam | 07/23/2022 at 10:00:00 AM (GMT-0500) | 07/11/2022 at 11:09:36 AM (GMT-0500) | 4:22:52 |
type | case | name | desc | mstr | user | date | date1 | time |
Inactive | a | chev | blue | a | Tom | 04/22/2020 at 01:05:00 AM (GMT-0500) | 04/21/2020 at 02:28:46 PM (GMT-0500) | 2:57:15 |
Inactive | a | chev | red | a | Tom | 04/22/2020 at 01:05:00 AM (GMT-0500) | 04/21/2020 at 02:28:46 PM (GMT-0500) | 2:57:15 |
Inactive | a | chev | yellow | a | Tom | 04/22/2020 at 01:05:00 AM (GMT-0500) | 04/21/2020 at 02:28:46 PM (GMT-0500) | 2:57:15 |
Active | a | ford | green | b | Sam | 07/23/2022 at 10:00:00 AM (GMT-0500) | 07/11/2022 at 11:09:36 AM (GMT-0500) | 4:22:52 |