I would like to create additional row(s) of the same data based on column(Rows#) value.
For example of the Input Data –
Name | Location | Rows# |
Sam | NY | 2 |
David | NJ | 1 |
Joe | HI | 4 |
The out result should be –
Name | Location |
Sam | NY |
Sam | NY |
David | NJ |
Joe | HI |
Joe | HI |
Joe | HI |
Joe | HI |
Is there anyone that can help me get off to the right start with this? Thanks!