I'm looking for a function from which i can select specific cells and place them in the other columns. For example, I have data in the following form:
- Food Processor
- 756
- 890
- Washing Machine
- 290
- 900
- Mixer
- 123
- 893
Now, i want the data in the following form in separate columns:
- Food Processor
- Washing Machine
- Mixer
in one column
And the prices in two separate columns.
How do i do that? Thank you!