Hello,
I have three columns, Department, Employee Name, and Contract Status. The data table is about 670 rows and will continue to grow. Thus, on a separate tab, I would like to extract the Department and Employee Name columns, but the rules are as follows:
1) Sort alphabetically, Department first, then Employee Name second
2) If the Contract Status has a reason, then the record must be excluded from the list
3) The formulas must be dynamic, as this list will be continuously updated.
Below are two example tables (before and after) of what I am trying to achieve.
<tbody>
</tbody>
Desired Results
<tbody>
</tbody>
Thank you
I have three columns, Department, Employee Name, and Contract Status. The data table is about 670 rows and will continue to grow. Thus, on a separate tab, I would like to extract the Department and Employee Name columns, but the rules are as follows:
1) Sort alphabetically, Department first, then Employee Name second
2) If the Contract Status has a reason, then the record must be excluded from the list
3) The formulas must be dynamic, as this list will be continuously updated.
Below are two example tables (before and after) of what I am trying to achieve.
(Cell A1)Department | Employee Name | Contract Status |
Sales | Bob | |
HR | John | |
Sales | Randy | 9 Month |
HR | Jane | |
Finance | Bill | Special Project |
Finance | Robert | |
HR | Julie | 3 Month |
<tbody>
</tbody>
Desired Results
Department | Employee Name |
Finance | Robert |
HR | Jane |
HR | John |
Sales | Bob |
<tbody>
</tbody>
Thank you