Reputation: 1
In Excel how can I create a cell function which does the following ...
and so forth, increasing by one column (M,N,O...) at a time.
I've tried with the functions INDEX, IF , MATCH and, LOOKUP .
Upvotes: 0
Views: 58
Reputation: 50008
Use INDEX and simple math:
INDEX
=INDEX(1:1,C1+7)
Upvotes: 3