I have a data frame where the first column is numbered from 1 - 95. However, some of these values are missing, so I want to add an empty row where those missing values are. For example, my numbers are 1, 2, 4, 5, 6, 8 in column A.
I want to:
- Find where all of the empty values are
- Add an empty row where these empty values are
- After adding an empty row, fill these empty cells in column A with the correct number (i.e. adding in row "3" and row "8")
Is there a function that can help me do this?
Thank you.