Multiple Value Index Function Help

mtskv5

Board Regular
Joined
Jun 17, 2010
Messages
88
Hi everyone and good afternoon. I am working on an Excel sheet and I am needing a little bit of help on a formula that I am using. Here is the formula:

Code:
{=IF(ISERROR(INDEX(Month!$A$7:$C$23,SMALL(IF(Month!$A$7:$A$23=$B$4,ROW(Month!$A$7:$A$23)),ROW(1:1)),3)),"",INDEX(Month!$A$7:$C$23,SMALL(IF(Month!$A$7:$A$23=$B$4,ROW(Month!$A$7:$A$23)),ROW(1:1)),3))}

I'm not sure the problem that I am having, but this will not return to correct values. I am thinking this is a more complex issue than what I can explain on here without providing the workbook. If anyone thinks that they can lend a hand, please let me know and I will email you the workbook.

Thanks,

mtskv5
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
try if this will help
Code:
=IF(ISERROR(INDEX(Month!$A$7:$C$23,SMALL(IF(Month!$A$7:$A$23=$B$4,ROW(Month!$A$7:$A$23)-ROW(Month!$A$7)+1),ROW(1:1)),3)),"",INDEX(Month!$A$7:$C$23,SMALL(IF(Month!$A$7:$A$23=$B$4,ROW(Month!$A$7:$A$23)-ROW(Month!$A$7)+1),ROW(1:1)),3))
 
Upvote 0
If anyone thinks that they can lend a hand, please let me know and I will email you the workbook.
We would prefer to avoid that. Refer to #7 of the Forum Rules and 18 & 19 of the Posting Guidelines.

Most problems can be successfully solved in the public arena by a good description of what you have and what you are trying to achieve. Small screen shots can also be provided directly in the forum to assist your description. My signature block has further information about that.
 
Upvote 0
Hi everyone and good afternoon. I am working on an Excel sheet and I am needing a little bit of help on a formula that I am using. Here is the formula:

{=IF(ISERROR(INDEX(Month!$A$7:$C$23,SMALL(IF(Month!$A$7:$A$23=$B$4,ROW(Month!$A$7:$A$23)),ROW(1:1)),3)),"",INDEX(Month!$A$7:$C$23,SMALL(IF(Month!$A$7:$A$23=$B$4,ROW(Month!$A$7:$A$23)),ROW(1:1)),3))}

I'm not sure the problem that I am having, but this will not return to correct values. I am thinking this is a more complex issue than what I can explain on here without providing the workbook. If anyone thinks that they can lend a hand, please let me know and I will email you the workbook.

Thanks,

mtskv5
Try this...

Array entered**:

=IF(ROWS(A$1:A1)>COUNTIF(Month!$A$7:$A$23,$B$4),"",INDEX(Month!$C$7:$C$23,SMALL(IF(Month!$A$7:$A$23=$B$4,ROW(Month!$A$7:$A$23)),ROWS(A$1:A1))))

** array formulas need to be entered using the key
combination of CTRL,SHIFT,ENTER (not just ENTER).
Hold down both the CTRL key and the SHIFT key
then hit ENTER.
 
Upvote 0

Forum statistics

Threads
1,224,518
Messages
6,179,259
Members
452,901
Latest member
LisaGo

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