Index Formula with condition - Excel 2010 -



Index Formula with condition - Excel 2010 -

i have table in sheet: teamdetails employee details next name domain ect.. etc.. , status

status column contains active or in active

in dashboard sheet, employees of domain displayed when select domain name info validation list(cell: f32).

current array formula:

{=iferror(index(teamdetails[name], small(if(teamdetails[domain]=dashboard!$f$32,row(teamdetails[domain])-row(teamdetails!$d$4)+1), rows(teamdetails!$d$4:teamdetails!$d4)) ),"no team")}

my question: above formula displays employees including status "in active" want avoid. please help! (no vba please) excel knowledge: beginner

thank you!

you should able throw in sec status , multiply first one. assume sec status of form teamdetails[status] = "active". combining first status gives:

=iferror(index(teamdetails[name], small(if((teamdetails[domain]=dashboard!$f$32)*(teamdetails[status]="active"),row(teamdetails[domain])-row(teamdetails!$d$4)+1), rows(teamdetails!$d$4:teamdetails!$d4)) ),"no team")

excel

Comments

Popular posts from this blog

java - How to set log4j.defaultInitOverride property to false in jboss server 6 -

c - GStreamer 1.0 1.4.5 RTSP Example Server sends 503 Service unavailable -

Using ajax with sonata admin list view pagination -