I have two spreadsheets in Excel.
At first I have the following data, for example:
ID | NOME
-----|----------
100 | Luiz
101 | Pedro
102 | Aline
In the second worksheet, I have:
ID | CATEGORIA
-----|------------
100 | Livros
100 | Filmes
101 | Livros
101 | Games
101 | Móveis
102 | Filmes
That is, in this second worksheet you have IDs that are repeated for each category. I would like to merge these two spreadsheets, so that it looks more or less like this:
ID | NOME | CATEGORIA
-----|-----------|-------------
100 | Luiz | Livros
100 | Luiz | Filmes
101 | Pedro | Livros
101 | Pedro | Games
101 | Pedro | Móveis
102 | Aline | Filmes
Is there such a possibility? Thank you.