I am trying to normalize a Pokemon DB in to 1NF, however, I am unsure how to do this in Excel.
I am wanting to take the multiple data entries in 'Abilities' and split them and duplicate the row.
Original data
+----------------+-----------+---------------+-----------------------------+
| pokedex_number | name | classfication | abilities |
+----------------+-----------+---------------+-----------------------------+
| 1 | Bulbasaur | Seed Pokemon | ['Overgrow', 'Chlorophyll'] |
| 2 | Ivysaur | Seed Pokemon | ['Overgrow', 'Chlorophyll'] |
| 3 | Venusaur | Seed Pokemon | ['Overgrow', 'Chlorophyll'] |
+----------------+-----------+---------------+-----------------------------+
Desired data
+----------------+-----------+---------------+-------------+
| pokedex_number | name | classfication | abilities |
+----------------+-----------+---------------+-------------+
| 1 | Bulbasaur | Seed Pokemon | Overgrow |
| 1 | Bulbasaur | Seed Pokemon | Chlorophyll |
| 2 | Ivysaur | Seed Pokemon | Overgrow |
| 2 | Ivysaur | Seed Pokemon | Chlorophyll |
| 3 | Venusaur | Seed Pokemon | Overgrow |
| 3 | Venusaur | Seed Pokemon | Chlorophyll |
+----------------+-----------+---------------+-------------+