Domino Code Fragment

Code Name*
Calculate The Number of Days Between Two Dates
Date*
04/28/2024
Source (or email address if you prefer)*
Rlatulippe@romac.com
IP address:.13.59.231.155
Description*
Use this formula to calculate the number of days between two dates.
Type*
Formula
Categories*
Date/Time Handling
Implementation:
Required Client:
Server:
Limitations:
Comments:
The 86400 value in the formula calculation is the sum of multiplying 60 seconds x 60 minutes x 24 hours to derive a number in terms of days.
Files/Graphics attachments (if applicable): Code:
@Abs(@Integer((EndDate - StartDate) / (86400)))