Hey All!
Got one that I'm not sure the best way to handle. I will have a data set such as the following which changes daily and as of now user can input Employee names in range C6:I9. I am hoping to get some guidance or help on taking this range and generating a single column list from it while ignoring blanks. Bonus points to be sorted in alphabetical order but not necessary. Any help is always appreciated, thanks!
Side note: there will be 6 to 7 of these lists so please keep that in mind if possible.
Got one that I'm not sure the best way to handle. I will have a data set such as the following which changes daily and as of now user can input Employee names in range C6:I9. I am hoping to get some guidance or help on taking this range and generating a single column list from it while ignoring blanks. Bonus points to be sorted in alphabetical order but not necessary. Any help is always appreciated, thanks!
Cell Formulas | ||
---|---|---|
Range | Formula | |
D3 | D3 | =IFERROR(VLOOKUP(B3,Table2,2,FALSE),"") |
D4 | D4 | =IFERROR(VLOOKUP(B3,Table2,3,FALSE),"") |
Cells with Conditional Formatting | ||||
---|---|---|---|---|
Cell | Condition | Cell Format | Stop If True | |
C31:D32,C3:D4,C10:D11,C17:D18 | Expression | =COUNTIF($C3,"*Job Name*") | text | NO |
Side note: there will be 6 to 7 of these lists so please keep that in mind if possible.