Please, Let me explain my question starting off with an example, for don't know how else to put this.
I have a set of data like this
Subject Measure1
----------
Person1 1
Person1 2
Person1 3
----------
Person2 1
Person2 2
----------
Person3 2
And I need to fill some data so it looks like this:
Subject Measure1
----------
Person1 1
Person1 2
Person1 3
----------
Person2 1
Person2 2
Person2 <null>
----------
Person3 <null>
Person3 2
Person3 <null>
Where null is just an empty cell, and the inserted data should keep the present records in the proper order it would be if the other rows where there (like in person 3 example) In other words, I need to have always 3 lines per Subject even if the Measure column is empty. I cannot do this manually due to a very large amount of data that is to be treated.
How do I do this in Excel? I tried a lot of fill missing data approaches, but it works for existing cells with no data. What I need is to insert rows following a rule.
Edit: formatting