im very new to vba coding and trying to learn. I have a sheet of more than 1000 entries . Column A is Sr number, Column B has Names and Column C to Column V has items (20 columns max). Each name in Column B can buy multiple items (column C to Column V) and based on number of items bought, i want to insert rows and fill it up with items against name column.
Sr | Name | Item1 | Item2 | Item3 | Item4 |.......| Item20 |
1 | Mac | ball | eggs |
2 | Roy | net | fish | milk | shoes |
.
.
1000
output
Sr | Name | Items |
1 | Mac | ball |
| Mac | eggs |
2 |Roy | net |
|Roy |fish |
|Roy |Milk |
|Roy | shoes |
.
.
.
1000