is there a way in Excel to have a formula that does something like this:
= 12/20/2010 - 180
which would take a certain date (12/20/2010 in this case) and subtrac
Here is what worked for me (Excel 14.0 - aka MS Office Pro Plus 2010):
=DATE(YEAR(A1), MONTH(A1), DAY(A1) - 16)
This takes the date (format mm/dd/yyyy) in cell A1 and subtracts 16 days with output in format of mm/dd/yyyy.