Do you mean something like this?
Cell C1 is the formula, Cell D1 is the straight count of days for comparison.
Sheet1
<TABLE style="BACKGROUND-COLOR: #ffffff; PADDING-LEFT: 2pt; PADDING-RIGHT: 2pt; FONT-FAMILY: Calibri,Arial; FONT-SIZE: 11pt" border=1 cellSpacing=0 cellPadding=0><COLGROUP><COL style="WIDTH: 30px; FONT-WEIGHT: bold"><COL style="WIDTH: 75px"><COL style="WIDTH: 75px"><COL style="WIDTH: 75px"><COL style="WIDTH: 64px"></COLGROUP><TBODY><TR style="TEXT-ALIGN: center; BACKGROUND-COLOR: #cacaca; FONT-SIZE: 8pt; FONT-WEIGHT: bold"><TD></TD><TD>A</TD><TD>B</TD><TD>C</TD><TD>D</TD></TR><TR style="HEIGHT: 18px"><TD style="TEXT-ALIGN: center; BACKGROUND-COLOR: #cacaca; FONT-SIZE: 8pt">1</TD><TD style="TEXT-ALIGN: right">8/02/2008</TD><TD style="TEXT-ALIGN: right">1/01/2009</TD><TD style="TEXT-ALIGN: right">327</TD><TD style="TEXT-ALIGN: right">328</TD></TR></TBODY></TABLE>
<TABLE style="BORDER-BOTTOM-STYLE: groove; BORDER-BOTTOM-COLOR: #00ff00; BORDER-RIGHT-STYLE: groove; BACKGROUND-COLOR: #fffcf9; BORDER-TOP-COLOR: #00ff00; FONT-FAMILY: Arial; BORDER-TOP-STYLE: groove; COLOR: #000000; BORDER-RIGHT-COLOR: #00ff00; FONT-SIZE: 10pt; BORDER-LEFT-STYLE: groove; BORDER-LEFT-COLOR: #00ff00"><TBODY><TR><TD>
Spreadsheet Formulas</TD></TR><TR><TD><TABLE style="FONT-FAMILY: Arial; FONT-SIZE: 9pt" border=1 cellSpacing=0 cellPadding=2><TBODY><TR style="BACKGROUND-COLOR: #cacaca; FONT-SIZE: 10pt"><TD>Cell</TD><TD>Formula</TD></TR><TR><TD>C1</TD><TD>=ABS(
(DATE(YEAR(NOW()),MONTH(B1),DAY(B1))-DATE(YEAR(NOW()),MONTH(A1),DAY(A1)))+
((YEAR(B1)-YEAR(A1))*365))</TD></TR><TR><TD>D1</TD><TD>=B1-A1</TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
Excel tables to the web - Excel Jeanie Html 4
It works by calculating the days between the start and end dates for the current year then absolutes it (in case your start date is after your end date once we make them the same year) Then it adds the number of years difference * 365.
This will come unstuck where the current year is a leap year and 29th feb for that year is in your range however.
You can counter this by summing with a modified version of my original formula like so:
=SUM(ABS((DATE(YEAR(NOW()),MONTH(B1),DAY(B1))-DATE(YEAR(NOW()),MONTH(A1),DAY(A1)))+ ((YEAR(B1)-YEAR(A1))*365)),IF(MONTH(DATE(YEAR(B1),2,28)+1) = 2,-1,0))