Need help with Index/Match Formula that omits values already populated

LeftyLayns

New Member
Joined
Aug 28, 2018
Messages
2
I run a report that has a list of numbers, and only need the numbers below the 0's returned in a column or sheet. Here's what the final product should be:

Report:Forumla Result:
00
08005
80055364
71633667
01971
0
5364
4912
4398
0
3667
2139
0
0
0
0
1971

<tbody>
</tbody>



I have an array formula that omits results already found that looks like this:
=(IFERROR(INDEX($A$2:$A$19,MATCH(0,IF(ISBLANK($A$2:$A$19),1,COUNTIF($C$1,$A$2:$A$19)),0)),""))

and as the fomula is pasted down what is Column C where $C$1 is changed to $C$1:C2 in row 3 to keep continuity and that gets me this formula result:

Forumla Result:
0
8005
7163
5364
4912
4398
3667
2139
1971

<tbody>
</tbody>



I just cannot for the life of me figure out how to alter the formula to only target for numbers below the 0's.
 

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN
Welcome to the MrExcel board!

I'm not sure why you have one 0 in your expected result? If it needs to be there please explain why. Otherwise, try this, copied down. Note the different row range references in the formula.

Excel Workbook
ABC
1Report:Forumla Result:
208005
305364
480053667
571631971
60
70
85364
94912
104398
110
123667
132139
140
150
160
170
181971
Below 0
 
Upvote 0
Peter, this works magnificently!

Id like to learn a little if you have time to explain this wizardry.

What exactly is the aggregate 'small' function doing:

Why are the row range references different; A3:A18 and A2:A17?

Whats the purpose of subtracting ROW(A3)?

And what I really cannot wrap my head around is the division and multiplication.

Would you be so kind as to break this down?

Thanks again!
 
Upvote 0
Peter, this works magnificently!

Id like to learn a little if you have time to explain this wizardry.
Glad it worked for you. :)

Answers below as best I can.
What exactly is the aggregate 'small' function doing:
It is finding the smallest row number (see more below) that meets the required conditions (value <> 0 and value above = 0) (see more below)

Why are the row range references different; A3:A18 and A2:A17?
Because we are looking at one set of rows to check that they are not zero and at another set of rows (the ones immediately above) to see that they are zero. The first row that could possible meet all the conditions is row 3 so that range starts there, while the rows that could be zero starts at row 2.

Whats the purpose of subtracting ROW(A3)?
We are not only subtracting ROW(A3) but also adding 1. Take a smaller example
(ROW(A$3:A$5)-ROW(A$3)+1)
{3,4,5}-3+1
{0,1,2}+1
{1,2,3}
That is, we have produced an array that simply numbers the rows (from 1) in the range we are looking at. The number sequence could be generated a bit more simply but this way doesn't fall over if new rows are subsequently added at the top of the sheet.


And what I really cannot wrap my head around is the division and multiplication.
So we have the array of row numbers from above {1,2,3,4,5,6, ...}
We now multiply our conditions together. That is (A3:A18 is not zero) * (A2:A17 is zero)
This multiplication will return 1 (True * True = 1 * 1 = 1) for rows that meet both conditions and 0 for rows that don't. So the first few results of this multiplication with the sample data will be
{0,1,0,0,0,1,...}
When we now do the division we get
{1,2,3,4,5,6, ...}/{0,1,0,0,0,1,...}
{Error,2,Error,Error,Error,6,...}
We set Aggregate to ignore errors (2nd argument was 6) so the
- first aggregate formula pulls out the smallest (ROWS(C$2:C2) = 1) number (2) so we get the 2nd number from the indexed range (A3:A18) which is A4 (8005)
- second aggregate formula pulls out the 2nd (ROWS(C$2:C3) = 2) smallest number (6) which results in A8 (5364) being the 6th number from the indexed range
- etc
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,637
Messages
6,125,964
Members
449,276
Latest member
surendra75

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