Hello
Ive been asked to condense 2 worksheets into 1 for workflow simplicity sake. The benefit I had with 2 sheets is that I could set up a formula on one sheet and carry the data over as text.
Now I need to create a formula that chooses which two dates to calculate, based on a cell being populated. Below is what I'm trying to do in one formula.
• If the [Assigned Date] is blank, then calculate the days between the [Created date] and Today
• If the [Assigned Date] is not blank, then calculate the days between the [Created date] and the [Assigned Date]
I've tried a few options that haven't quite worked yet:
=IF(ISBLANK([Assigned Date]@row), NETWORKDAYS([Created Date]@row, TODAY(), [Assigned Date]@row - [Created Date]@row))
=IF(ISBLANK([Assigned Date]@row), NETWORKDAYS([Created Date]@row, TODAY(), OR(NOT(ISBLANK([Assigned Date]@row), [Assigned Date]@row - [Created Date]@row)
=IF(ISBLANK([Assigned Date]@row), NETWORKDAYS([Created Date]@row, TODAY(), [Assigned Date]@row - [Created Date]@row))