I've not used Smartsheet formulas for some time, and I've spent the last hour trying to tackle this formula on a deadline. I'm very rusty.
I'm literally just trying to calculate the amount of workdays between two columns, but on the same Smartsheet. It's between "Date Served" and "DOI of Litigation." Neither of them are date columns, though. So, I think that's the issue. All of these dates are for years prior, so I don't know how to calculate that.
I have this: =IF([Date Served]1) = "", "", IF([DOI of Litigation]1 = "", NETWORKDAYS([Date Served]1, TODAY()), NETWORKDAYS([Date Served]1, [DOI of Litigation]1)
Additional problem: some columns don't have dates, so that also has to be taken into account. I've tried a few different IFERROR statements.