cameronWFA
New Member
- Joined
- Jun 4, 2012
- Messages
- 14
Hey Y'all,
Here is a simplified example for the spreadsheet I am trying to work with. I don't know how to post the sheet on the forum so it is just attached as an image.
Essentially, I want the cell that says "FORMULA CELL" to check the contents of the cell under the collumn "TOP DIVIDEND PAYING STOCK" (The cell under that collumn that is in its same row), and match it to the name that goes across row 3 (C3:G3). Then, after it has matched that, I want it to display the numerical value of that located collumn for the same row as "FORMULA CELL" and also the stock name it looked up under TOP DIVIDEND PAYING STOCK.
I hope that made sense, it is actually not all that complicated of a task I don't think. Here is the formula I am using now which I cant get to work correctly so that I can drag it up and it finds the value for each stock as it looks each one up:
So basically, it is
INDEX(range, [row9], [match b9 to c3:g3])
And then I would ideally want it to output 32, the value in E9. I am hoping to get this thing working so I can drag the cell up and it would perform the same index/match function for row 8,7,6,5,etc... But currently I get the output "#VALUE"
Thank you all so much in advance for all your help. You guys rock!
Best,
Cam
Here is a simplified example for the spreadsheet I am trying to work with. I don't know how to post the sheet on the forum so it is just attached as an image.
Essentially, I want the cell that says "FORMULA CELL" to check the contents of the cell under the collumn "TOP DIVIDEND PAYING STOCK" (The cell under that collumn that is in its same row), and match it to the name that goes across row 3 (C3:G3). Then, after it has matched that, I want it to display the numerical value of that located collumn for the same row as "FORMULA CELL" and also the stock name it looked up under TOP DIVIDEND PAYING STOCK.
I hope that made sense, it is actually not all that complicated of a task I don't think. Here is the formula I am using now which I cant get to work correctly so that I can drag it up and it finds the value for each stock as it looks each one up:
Code:
=INDEX(C4:G9, 9,MATCH(B9,$C$3:$G$3), 0)
So basically, it is
INDEX(range, [row9], [match b9 to c3:g3])
And then I would ideally want it to output 32, the value in E9. I am hoping to get this thing working so I can drag the cell up and it would perform the same index/match function for row 8,7,6,5,etc... But currently I get the output "#VALUE"
Thank you all so much in advance for all your help. You guys rock!
Best,
Cam