Using data in a format similar to the one below, how would I insert additional entire rows below all cells with blanks?
1 A
2
3 B
4
5 C
I essentially want the following output after inserting
1 A
2
3
4 B
5
6
7 C
8
9
I can select blanks using regular expression “^$”, however, there is no option to insert rows. CTRL++ does not work.