Hi,
I have an excel table named incomeTable like this:
name | spend | income
mario | 3 | 10
roger | 4 | 5
tom | 5 | 4
I'd want to access a given column and a given range of rows but getting the column name from a cell.
I.e., let us say I have in A2 the column name of interest
columnNameOfInterest
spend
Then, how'd I access a range of rows and all the contents in that column?
=incomeTable[[1:2],[=$A2]]
and it'd return
3
4
Bookmarks