Index function issue

rayted

New Member
Joined
Nov 6, 2017
Messages
9
Hi there,

I have somehow stumbled my way across to get an index function to work with a project plan.

Please find spreadsheet attached. On the Project Planner snapshot sheet, you will see to the right hand side (ID) and 'Actions for the next meeting'. Using the relevant ID number, actions for the next meeting are pulled from the first tab (AMP Panel actions). It's not quite pulling through things (see ID no. 11 for example). Any thoughts on this would be much appreciated.

R.

*update* I can't upload on here for some reason*

Here is the formula on the project planner snapshot sheet (which needs to import the data): =INDEX('AMP Panel actions'!$A$2:$K$41,P9,11) this is currently returning '0' though there is text in the cell it should be pulling from
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Hi. What is in cell P9 in the sheet where the formula is housed?
 
Upvote 0
You would have to use match to do that.

=INDEX('AMP Panel actions'!$A$2:$K$41,MATCH(P9,'AMP Panel actions'!$A$2:$A$41,0),11)

or

=INDEX('AMP Panel actions'!$K$2:$K$41,MATCH(P9,'AMP Panel actions'!$A$2:$A$41,0))

or even:

=VLOOKUP(P9,'AMP Panel actions'!$A$2:$K$41,11,0)
 
Upvote 0
Rayted,

your problem seems to be solved over at excelforum.com since 7:28 AM. Why would you ask the same question here 4 hours later???
 
Upvote 0
Rayted,

your problem seems to be solved over at excelforum.com since 7:28 AM. Why would you ask the same question here 4 hours later???

Appears to be a time difference setting issue - I am new here. Issue got resolved about 20 mins ago. Anyway I need to close this thread but cannot do so (which is why I wasted a further 10 mins)
 
Upvote 0

Forum statistics

Threads
1,214,614
Messages
6,120,533
Members
448,969
Latest member
mirek8991

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