excel formula - Criteria selection -
i have table has phase name, name, , stage completion (which has dates , blanks)
in separate part of worksheet each name, want phase name based on latest date in stage completion. e.g 'closure' latest stage complete 3 july, b execution, , on. want use formula rather advanced filter or dbase function. possible? thought half way there max if got stuck.
b c 1 phasename name stage completion 2 initiation 1/7 3 execution 2/7 4 closure 3/7 5 initiation b 1/7 6 execution b 4/7 7 closure b 8 initiation c 1/7 9 execution c 10 closure c
you want following array formula:
=index($a$2:$a$10,match(max(if($b$2:$b$10=f2,$c$2:$c$10)),if($b$2:$b$10=f2,$c$2:$c$10),0))
being array formula must confirmed ctrl-shift-enter when exiting edit mode instead of enter. if done excel put {}
around formula.
Comments
Post a Comment