I needed to split and sort the spreadsheet based on Column B's contents, but sorting the merged cells ended up losing the part number in Column A, so many rows had no part #. Unsatisfactory. I was looking for a way to "split" a cell so that the contents were duplicated in all the component cells.
Current structure:
Code: Select all
|ColA | Col B | Col C |
| |Property 1 | Value 1 |
|_PN_ |Property 2 | Value 2 |
| |Property 3 | Value 3 |
...
Code: Select all
|ColA | Col B | Col C |
|_PN_ |Property 1 | Value 1 |
|_PN_ |Property 2 | Value 2 |
|_PN_ |Property 3 | Value 3 |
...
As I will definitely need to repeat this process on the sheet that I don't own, I'm trying to figure out if there's a better way to accomplish this same result without the labor-intensive hand editing. What I would like is to know if there's a way to select the entire column and have some kind of macro that would investigate each merged cell and copy the contents into each component cell, and then split the cell.
Thanks
Darryl