What is the best way to expand data found in a cell by creating new rows?
In my example I have a row of data that contains 3 values (row Kind)
In Sheet2 the data is expanded into 3 different rows keeping all the other values
Sheet1
Sheet2
Thanks
In my example I have a row of data that contains 3 values (row Kind)
In Sheet2 the data is expanded into 3 different rows keeping all the other values
Sheet1
Color | Date1 | Date2 | Date3 | Kind | Owner |
Red | 8/10/2022 15:35 | 8/10/2022 16:10 | 8/11/2022 13:57 | dog cat bird | Sophia |
Sheet2
Color | Date1 | Date2 | Date3 | Kind | Owner |
Red | 8/10/2022 15:35 | 8/10/2022 16:10 | 8/11/2022 13:57 | dog | Sophia |
Red | 8/10/2022 15:35 | 8/10/2022 16:10 | 8/11/2022 13:57 | cat | Sophia |
Red | 8/10/2022 15:35 | 8/10/2022 16:10 | 8/11/2022 13:57 | bird | Sophia |
Thanks