I need to create a formula that will track aging up to and including the day files are processed by an analyst. Once the “Date file received” column is populated with a date, the formula should count the weekday(s) up to and including “Date Processed” date.
For example, if the date file received date is 4/22 and the date processed date is 4/22 the file age column should have a 0.
There will be some blank cells in both columns as there will be files not received or processed. How do I create a formula that will generate and count the network days of cells that already have dates entered and once a date is entered in the blank cell? Here is what I have thus far as I am not sure how to add in the blank cell formula.
=IF([Date File Recd]@row = [Date Processed]@row, "0", IF(NETWORKDAYS([Date File Recd]@row, [Date Processed]@row))