Ideally, I would like to do this without VBA … functions would be preferable.
If I have a range of several rows and several columns, it is easy for me to write those out into a single column with some structure.
But, I want to do the reverse. I have 3 columns, data in one, a value for a row in the second, and a value for the column in the third. How do I put them into a rectangular range with functions?
For example, I have:
Echo 2 2
Charlie 1 3
Delta 2 1
Alpha 1 1
Foxtrot 2 3
Bravo 1 2
And I want to create:
Alpha Bravo Charlie
Delta Echo Foxtrot
What I’d like to do is be able to put a flexible function in each of the 6 cells of the above range, that references the earlier set of 6 rows and 3 columns, and puts the right item in each spot.