EverLearner00
New Member
- Joined
- Aug 20, 2023
- Messages
- 1
- Office Version
- 365
- Platform
- Windows
If I had this sheet:
| A | B |
|------+--------|
| 1 | Apple |
| 2 | Banana |
| 2 | Mango |
| 3 | Grape |
| 4 | Peach |
How do I list unique values from the first column followed by corresponding values in the adjacent columns. So, I get a table like this:
| D | E | F |
|-------|-------|-------|
| 1 |Apple| -----|
| 2 |Banana | Mango |
| 3 |Grape| ----|
| 4 |Peach| -----|
of course my data is much larger, and this is just for illustration
| A | B |
|------+--------|
| 1 | Apple |
| 2 | Banana |
| 2 | Mango |
| 3 | Grape |
| 4 | Peach |
How do I list unique values from the first column followed by corresponding values in the adjacent columns. So, I get a table like this:
| D | E | F |
|-------|-------|-------|
| 1 |Apple| -----|
| 2 |Banana | Mango |
| 3 |Grape| ----|
| 4 |Peach| -----|
of course my data is much larger, and this is just for illustration