I know SQL has the Datediff function but does anyone know of a way to determine the difference in days when just using the month and day from two dates? For example, I need to know if today's date, GetDate() is within 60 days of a given past date, like 10/23/2003. Seems simple enough using DatePart but I run into problems when today is a day in December and the past date is in January, like 12/10/2013 and 01/15/2005. Then you'd have a situation like 12/10 for today, for example, then 01/15 for the past date (dropping the year). Seems there should be a way to parse out the year in two given dates then find the difference in days between those two values. Thanks for any help you can offer.