Index formula only returns one instance

PSI94

New Member
Joined
Mar 11, 2022
Messages
27
Office Version
  1. 2021
Platform
  1. Windows
Hi,

I've an index formula that I'm wanting to pull data thru from another sheet. I've found that it will only pull thru one instance, when in actuality there's 2.

Could anyone help in amending the formula? :(

=IFERROR(INDEX('Expected Results'!$A:$A,MATCH('Detailed Comparison'!AQ11,'Expected Results'!$CB:$CB)),"")
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
Try:
Excel Formula:
=IFERROR(FILTER('Expected Results'!$A:$A, 'Expected Results'!$CB:$CB='Detailed Comparison'!AQ11),"")
You may not need the IFERROR wrapper.
 
Upvote 0
Try:
Excel Formula:
=IFERROR(FILTER('Expected Results'!$A:$A, 'Expected Results'!$CB:$CB='Detailed Comparison'!AQ11),"")
You may not need the IFERROR wrapper.
thankyou!
 
Upvote 0

Forum statistics

Threads
1,214,588
Messages
6,120,412
Members
448,959
Latest member
camelliaCase

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