Forum Discussion

ramesh98's avatar
ramesh98
Copper Contributor
May 15, 2021
Solved

Need formula based on conditions for lower or higher column values

  I need help for getting output in Remarks column based on conditions data. The data is given in attached excel file  
  • HansVogelaar's avatar
    HansVogelaar
    May 15, 2021

    ramesh98 Apparently you have an older version of Excel that doesn't have the IFS function.

    This version will work in all versions:

     

    =IF(B3>MAX(C3:K3),$H$11,IF(B3<MIN(C3:K3),$H$12,IF(AND(B3>C3,B3<MIN(D3:K3)),$H$13,IF(AND(B3<C3,B3>MAX(D3:K3)),$H$14,IF(AND(B3>MAX(C3:D3),B3<MIN(E3:K3)),$H$15,IF(AND(B3<MAX(C3:D3),B3>MIN(E3:K3)),$H$16,IF(AND(B3>MAX(C3:F3),B3<MIN(G3:K3)),$H$17,"Other")))))))

Resources