Forum Discussion

SSBColliers's avatar
SSBColliers
Copper Contributor
Mar 23, 2023

How to make index function only pull figures if cell adjacent hits required criteria

I'm currently using this formula: =INDEX(A1:A100,MODE(IF(A1:A100<>"",MATCH(A1:A100,A1:A100,0)))) From this website: "https://www.extendoffice.com/documents/excel/3397-excel-find-mode-for-text.html...
  • NikolinoDE's avatar
    Mar 23, 2023

    SSBColliers 

    My suggested solution would be, you can use the INDEX and MATCH functions with multiple criteria to look up values based on the year.

     You can use this generic formula syntax:

    =INDEX(return_range,MATCH(1,(criteria1=range1)(criteria2=range2)…),0))

    In your case, you can use something like this:

    =INDEX(A1:A100,MATCH(1,(B1:B100=year),0))

    Where year is the cell that contains the year you want to check.

    This is an array formula and must be entered with Control + Shift + Enter in Legacy Excel or just Enter in Excel 365.

Resources