[vba]

Sub TEST()
Dim str_Date1 As Date
Dim str_Date2 As Date
str_Date1 = "28/03/2008"
str_Date2 = "25/07/2009"
MsgBox Application.Days360(DateValue(str_Date1), DateValue(str_Date2))
End Sub
[/vba]