Forum Discussion

MJenner's avatar
MJenner
Copper Contributor
Sep 13, 2023
Solved

trouble with array, IFERROR and INDEX formula

Hi,   I am having trouble trying to get the rows that meet two criteria returned from an array. the formula I am using is: =IFERROR(INDEX(Service[#All], SMALL(IF((Service[State]=C1)*(Service[Age ...
  • Riny_van_Eekelen's avatar
    Sep 13, 2023

    MJenner Since you tag your question with Office365, why not use FILTER in stead? Would this do?

     

    =FILTER(Service,(Service[State]=C1)*(Service[Age group]=C2))

     

    This will spill all rows from the Service table where State = the value in C1 AND Age group equals the value in C2. 

Resources