I have an Excel table with several items 1, 2, 3..., each of which has subitems 1.1, 1.2, etc. I'm using the list of subitems as my key column and populating the main items using vlookups, but only showing each main item once.
/| A | B | C | -+---------+----------+----------+ 1| Item1 | 1.Note | Item1.1 | 2| | | Item1.2 | 3| | | Item1.3 | 4| Item2 | 2.Note | Item2.1 | 5| | | Item2.2 | 6| | | Item2.3 | 7| | | Item2.4 | 8| Item3 | 3.Note | Item3.1 | 9| | | Item3.2 | 0| | | Item3.3 |
Column C is raw data, A and B are formulas.
Column B has notes, so the text may be long. I want to wrap the notes to take up all the rows available. I can do this manually by selecting B1:B3 and merging them, but then it won't update if I add items to column C. I don't care if the cells are merged or just wrapped and overlapping.
Can this be done in formulas or VBA?