programmher
Programmer
I have two dates that I need to find the difference. I am using the following:
<cfset ProcessTime = DateDiff("d",DateEntered,DateShipped)
I get the following result:
Date entered:20010712 Date Shipped: 20010828
ProcessTime: 116
I need to convert the ProcessTime so it is 47 instead of 116.
What is the proper way to do this?
<cfset ProcessTime = DateDiff("d",DateEntered,DateShipped)
I get the following result:
Date entered:20010712 Date Shipped: 20010828
ProcessTime: 116
I need to convert the ProcessTime so it is 47 instead of 116.
What is the proper way to do this?