0

enter image description here

trying 1 conditions and it's works

INDEX($E$7:$E$13;SMALL(IF($H$7:$H$12="Not Paid";ROW($H$7:$H$12)-ROW($H$7)+1);1))

trying 2 conditions and not working

INDEX($E$7:$E$13;SMALL(IF($H$7:$H$12="Not Paid";$G$7:$G$12="Debit";ROW($H$7:$H$12)-ROW($H$7)+1);1))

Please Help!

Scott Craner
  • 148,073
  • 10
  • 49
  • 81

1 Answers1

0

This works.

{=INDEX($E$7:$E$13;
        SMALL(IF($H$7:$H$12 & $G$7:$G$12 = "Not PaidDebit";
              ROW($H$7:$H$12)-ROW($H$7)+1);
              1)
       )}
StoneGiant
  • 1,400
  • 1
  • 9
  • 21