Nice date indeed eh...!!
Just a little tip to eliminate the unsightly "41,296" and similar numbers:
As an example let's take cell F4, which is Kiri's # of days since app received.
Currently the formula for F4 is:
=TODAY()-E4
So you can try the following formula instead for F4:
=IF(E4="", "", TODAY()-E4)
Basically, it's an if statement which checks whether E4 is empty as follows:
If E4 is empty: the formula will return a blank on F4 (instead of a weird number such as "41,296")
If there's a date on E4: the formula calculates the number of days since app received.
Then you'll just need to copy the formula to the whole column F.
The same principal also works for columns H and J