I have this formula:
=INDEX(COLLECT({DS-Email}, {DS-Office}, [Office Helper]@row, {DS-Title}, Title@row), 1) that works.
I want to add "And when Termed Date column is blank."
I came up with this formula:
=IF(ISBLANK([Termed Date]@row), INDEX( COLLECT({DS-Name},{DS-Office}, [Office Helper]@row, {DS-Title}, Title@row ), 1 ), "")
But, it gives me a an error. I want to index employees from the directory that are current.
Example below: I don't want it to index Jennifer's name because she has a date in the termed date column.