Find MIN/MAX date in a range if it matches criteria of other columns

后端 未结 3 2007
长发绾君心
长发绾君心 2021-01-06 14:42

Column A is date

Column B is criteria

I want to find the MIN date for each criteria. I tried using Ctrl

3条回答
  •  旧时难觅i
    2021-01-06 15:03

    =SMALL(INDEX(($F$2:$F$14=F3)*$D$2:$D$14,),SUM(COUNTA(F:F)-COUNTIF(F:F,F3)))
    

    If your criteria is repeated and want to find the min date for that you can use this without shift+ctrl + enter function.

    • date is D column
    • criteria is F column

提交回复
热议问题