I want to calculate NETDAYS from Submission Date to Todays Date, or to Comments Log Received Date
I have this formula that works.
=IFERROR(IF([Comments Log Received]@row = "", NETDAYS([Date Submitted to SJTA]@row, TODAY()), NETDAYS([Date Submitted to SJTA]@row, [Comments Log Received]@row)), "")
However, I need to expand the formula to calculate what happens after the Comments Log Received becomes a date. This is what I came up with, but it does not work.
=IFERROR(IF([Comments Log Received]@row = "", NETDAYS([Date Submitted to SJTA]@row, TODAY()), NETDAYS([Date Submitted to SJTA]@row, [Comments Log Received]@row)), IF(ISDATE([Comments Log Received]@row, NETDAYS([Date Submitted to SJTA]@row, [SJTA Approval Date]@row), "")))
What am I doing wrong?