You can use the dateif function to find out the difference in days.
=DATEDIF(A1,TODAY(),"d")
Quote from excel.datedif.com
The mysterious dateif function in Microsoft Excel
The Datedif function is used to calculate the interval between two dates in days, months, or years.
This feature is available in all versions of Excel, but is not documented. It is not even listed in the Insert Function dialog box. Therefore, you must enter it manually in the formula field. Syntax
DATEDIF( start_date, end_date, interval_unit )
start_date from date end_date to date (must be after start_date) interval_unit The unit to be used for the output interval Values ββfor interval_unit
interval_unit Description
D Number of days
M Number of full months
Y Number of full years
YD Number of days excluding years
MD Number of days excluding months and years
YM Number of months excluding years
Mistakes
Error description
#NUM! End_date later (more) start_date or interval_unit has an invalid value. #COST! end_date or start_date is not valid.
source share