I have an excel file that has been uploaded here
http://www58.zippyshare.com/v/99974349/file.html
The formula works great except for a column with descending values.
=INDEX(
INDIRECT("'"&LOOKUP(B5,TblA)&"'!A6:A36"),
LOOKUP(9.99999999999999E+307,
SEARCH("-"&C8&"-","-"&INDIRECT("'"&LOOKUP(B5,TblA)&"'!C6:C36")&"-"),
ROW(C6:C36)-ROW(C6)+1))
Let me explain the excel file.
I have one main sheet 'Report' and 4 other sheets correspond to 4 age groups. - 4.2.0 to 4.7.30, 4.8.0 to 5.1.30, 5.2.0 to 5.7.30 and 5.8.0 to 6.1.30. Depending on the Age (B5) in the sheet 'Report', I select one of the 4 sheet to pick values from. I pick the correct sheet using a Table Name TblA which contains all sheet names and is defined from A24 to B27 in the sheet 'Report'.
In the sample sheet that is uploaded, B5 contains the value 5.7 which means we have to select the sheet 5.2.0 to 5.7.30.
Now from the sheet 5.2.0 to 5.7.30, I have to seek the respective Standard Score (1st column) for every Raw Score entered in 'Report'.
Here are the steps:
A. Enter Raw scores in sheet 'Report' C7 to C15
B. Search Respective sheet depending on age (B5 cell), in our case 5.2.0 to 5.7.30 since age is 5.7
C. Populate Standard score from Raw scores by picking the corresponding column in the 4 sheets. For example, if Raw Score of Col1 is 25 (C7), then pick the Standard score of Col1 from 5.2.0 to 5.7.30 and enter in D7 and so on.
D. This way all standard scores are filled in D7 to D15.
The formula works great except for D13 in sheet 'Report' since if you observe ColD in 5.2.0 to 5.7.30, it is in descending order.
How do I change the formula to accomodate this unique column?
Well, it's not really the order that's causing the error, it's because you don't have any results! The formula you use is trying to find
-159-
which it cannot find at all in the age sheet. You really need something to look into ranges, so that if you have 159, it will return a positive result when you try to match against139-160
.I have made a formula building it from smaller ones, but when assembled, the repeating units make it daunting... Also, it's an array formula, so you need to use Ctrl+Shift+Enter for it to work as intended. You can still drag the formula down.
The single line version...
You can notice that there are some repeating blocks, namely:
For the sheet name;
Which is a larger block to make the formula a bit more flexible (it automatically picks the correct column e.g. if you change B8
Exclusion
toCol1
, the formula will automatically adjust itself)If I call the first
Sheet
and the secondColumn
, it becomes much shorter and perhaps easier to understand:Or
Disclaimer: I'm not sure if there are any way to make this even shorter, but I guess that as long as it's working right now ^^
You can download your updated sheet here.
Explanation:
As I mentioned before, the formula is based off several smaller ones and quite a few repeats of those.
As you already know (it's a variation of a part of your own formula), this gives the area containing all the different ages. Using it and the below, we get this:
Into:
Index will thus look into the range
'Sheet'!B6:J36
,0
indicates it will take any column(s) andMATCH(B7,'Sheet'!B5:J5,0)
returns the nth column by taking the value ofB7
(in the case of your spreadsheet,Col1
) and looking it into'Sheet'!B5:J5
which gives1
. The above will thus return the range'Sheet'!B6:B36
. Let's put it in the formula:This formula is itself a giant
INDEX
formula, with range'Sheet'!A6:A36
and row number as the bigIFERROR
group. The first part of theIFERROR()
gets evaluated first:This should be easy enough to understand. It looks for the raw score (from
C7
) into the range we obtained earlier, times 1 to convert everything to number (you can't look up numbers and text and expect a match). So that if there's an exact match of a number, it will return the row number of the found raw score and feed it to theINDEX()
. For example, if the first row is returned, we get:Which is
'Sheet'!B6
. If however there's no match (i.e. the raw score cannot be found),MATCH
will return an error. And that's when the second part of theIFERROR
comes into play:This
MATCH
tries to find1
within what seems to be twoIF
s; the first one being:FIND("-",'Sheet'!B6:B36)-1
gets the position of the last character before the-
in the column'Sheet'!B6:B36
.With those values, this
FIND
would return:The
IF
thus becomes:Notice the braces here; they indicate an array and that's why this is an array formula.
LEFT
then extracts all the characters before the-
(remember your other question, I answered with a technique very similar to this):Which is...
Again,
1*
converts those to actual numbers becauseLEFT
be default returns text characters. It's important here to do this because we're going to use the comparator<=
, so that if the value to the left ofC7
(the raw score), then the IF should return1
, else, it should return0
. Let's say that the raw score was154
. The results would be:I just realised that the formula can be made a little shorter xD Anyway, we'll see that later. The next
IF
behaves in a similar fashion, but checks for the value at the right of the-
:With... FIND MID('Sheet'!B6:B36, X, 100) 12-13 -> 4 -> 13 145-155 -> 5 -> 155 1567-1865 -> 6 -> 1865
You can notice that this formula will stop working if you have something above 100 character long here. Anyway, the
IF
thus becomes:Now that we have these, the
MATCH
from before becomes:Some simple math makes this into:
And what is the position of the
1
in there? That's right, position 2!Our original formula this becomes:
So that if nothing was found at first, it will return an error (
#N/A
in this case) and instead return2
.=INDEX( 'Sheet'!A6:A36 , 2 )
gives'Sheet'!A7
.And the slightly shorter version is:
I actually removed the inner
IF
s, because(a>b)*(c>b)
already returns 0s and 1s sinceTRUE
multiplied byTRUE
gives1
in excel.