Hi Mr Excel,
I've literally spent 3+ hours on Google but still can't solve the query below.
The code below works perfect, it gives me all the employee names ranked by salary.
Current Code:
I just can't figure out where to put these 2 criteria within the code above which will allow me to list my active female employees only:
I've literally spent 3+ hours on Google but still can't solve the query below.
The code below works perfect, it gives me all the employee names ranked by salary.
Current Code:
Code:
=INDEX(Table1[Employee],MATCH(1,INDEX((Table1[Salary]=LARGE(Table1[Salary],ROWS(K$1:K1)))*(COUNTIF(K$1:K1,Table1[Employee])=0),),0))
I just can't figure out where to put these 2 criteria within the code above which will allow me to list my active female employees only:
Code:
if(Table1[Gender]="F")*(table1[Status]="Active")