Find the good data by matching 3 different criterias with a formula in an excel report
It is a combination of “index” and “match” formulas, much better than the “vlookup” formula because it doesn’t matter where will be the values.
When I use the formula ?
When I need to match 3 different values and I know that every month, those values won’t be at the same cell location.
How to use the formula ?
The formula in this topic is with "," so depending of the operating system of your PC, the formula should have ";" instead of ",".
For the formula to work properly, I need to do an additional action, by pressing “shift + control + enter” in order to put the formula between brackets. If not, it will show an error.
How is/are the formula(s) ?
=INDEX()
=MATCH()
Putting the formula in sheet2:
=INDEX(Sheet1!$B$1:$S$7,MATCH(A2,Sheet1!A:A,0),MATCH("Type France"&"number",Sheet1!$B$1:$S$1&Sheet1!$B$2:$S$2,0))
Then pressing “shift + control + enter” to put it between brackets so I will get the result and not an error:
{=INDEX(Sheet1!$B$1:$S$7,MATCH(A2,Sheet1!A:A,0),MATCH("Type France"&"number",Sheet1!$B$1:$S$1&Sheet1!$B$2:$S$2,0))}
I ask the formula to index first all values between the column B and the last one from the first row to the last one “INDEX(Sheet1!$B$1:$S$7”. Secondly I ask it to match first, “windows” represented by A2 in the column A “MATCH(A2,Sheet1!A:A,0)”.
Once it finds it, I ask it to match secondly “type France” and thirdly “number”, “type France” is always located in the row1 between the B and S columns and “number” is always located in the row2 between the same columns “MATCH("Type France"&"number",Sheet1!$B$1:$S$1&Sheet1!$B$2:$S$2,0)”
NOTE: in this example, the “type” cell (for instance “type France”) is merged, I need to unmerge then copy/paste to the empty cells because merged cells won’t work.
Interesting Topics
-
Be successfully certified ITIL 4 Managing Professional
Study, study and study, I couldn’t be successfully certified without studying it, if you are interested...
-
Be successfully certified ITIL 4 Strategic Leader
With my ITIL 4 Managing Professional certification (ITIL MP) in the pocket, it was time to go for the...
-
Hide visual and change background color based on selection
Some small tricks to customize the background colour of a text box...
-
Stacked and clustered column chart or double stacked column chart
In excel, I use a lot the combination of clustered and stacked chart...