Hello everyone,
I have 2 dates. For example
01/04/2009 and 12/01/2011
And I want to make (12/01/2011) - (01/04/2009) = ?
And the result to be in days.
Is there any way to do something like that?
Please help me...it's important.
Printable View
Hello everyone,
I have 2 dates. For example
01/04/2009 and 12/01/2011
And I want to make (12/01/2011) - (01/04/2009) = ?
And the result to be in days.
Is there any way to do something like that?
Please help me...it's important.
Something likeCode:Private Sub Command1_Click()
MsgBox DateDiff("d", "12/01/2011", "04/04/2009")
End Sub
Thank you Hack.