According to the
> documentation < you use the Duration method to get the milliseconds between instants in time.
Then it is a matter of using the MakeInstant method to set the start and end dates and give Duration the instants it needs as input.
MakeInstant takes a "MM/DD/YYYY" string as input and you will need two of them -- one for the start date and one for the end date.
The last step is to convert the milliseconds returned by Duration to days to get the days between the two dates.
> Google < says there are 86400000 milliseconds in a day so divide the milliseconds returned by Duration by 86400000 to get the number of days between the dates.
