Using an Array to return multiple values

Kristinmc

New Member
Joined
Aug 1, 2016
Messages
25
Hello!

I am trying to get an array formula to work so I can have one value return multiple answers.

My formula currently is:

=INDEX('GP Serial Data'!$F:$G,SMALL(IF((Summary!$B$2='GP Serial Data'!$F:$G),ROW('GP Serial Data'!$F:$G)-MIN(ROW('GP Serial Data'!$F:$G))+1,""),ROWS($A$1:A1)))

I'm not sure I have the rows correct. My lookup value is in B2. I want the return values to start in B5.

The data I have is looking to reference an Item number and all the serial numbers for that one item number.

The range of the data could change, which is why I was using just the GP SERIAL DATA $F:$G (columns) instead of $F$1:$G$30000 (set range).

I can't get this to work--any help would be great!
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Assuming you have item numbers in col F and serial numbers in col G, this should be:

=IFERROR(INDEX(G:G,SMALL(IF(($B$2=F:F),ROW(F:F)-MIN(ROW(F:F))+1,""),ROWS($B$5:B5))),"")

and then instead of pressing enter, press Ctrl+Sift+Enter to make it an array function which will add curly braces around the formula.

I also assumed this is all on the same worksheet. If your data is on a different tab, you will need to add the 'GP Serial Data'! before your F and G column references.
 
Upvote 0
Also, doing this against the full columns is not a good practice. You may want to make your data into a table instead which can flex with data size.
 
Upvote 0

Forum statistics

Threads
1,215,143
Messages
6,123,285
Members
449,094
Latest member
GoToLeep

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