Excel - How to COPY/MOVE Unique Value With 2 Conditions?

∥☆過路亽.° 提交于 2019-12-13 03:50:42

问题


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!


回答1:


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)
       )}


来源:https://stackoverflow.com/questions/52502464/excel-how-to-copy-move-unique-value-with-2-conditions

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!