Issues con INDEX function

Aristerneris

New Member
Joined
May 28, 2019
Messages
1
Good afternoon everybody!

I am currently taking an specialization final test and I am stuck with one of the questions...please help me!

I am using this expression: =INDEX(Rate_500!C3:G6,2,3) and I get a value.

I need use this same expression to get values from the same sheet and the same range, but I must express it in this way: =INDEX("Rate_"&.05*10000&"!"&C3:G6,2,3)...but, with this expression i just get the name of the sheet: Rate_500!

I don´t know what I am doing wrong...please somebody help me!.

Note: the last expression is written in that way because with it I have to extract information of another sheets and the name will be varying.
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
You cannot index a quotation. If, for some reason, you have to have it in that odd form, you'll need to convert the TEXT into something that can be indexed.

Something like this:

Code:
=INDEX(INDIRECT("Rate_"&0.05*10000&"!C3:G6"),2,3)
 
Upvote 0

Forum statistics

Threads
1,214,848
Messages
6,121,917
Members
449,055
Latest member
KB13

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top