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
Post a Comment