Domino Code Fragment

Code Name*
Calculate The Number of Days Between Two Dates
Date*
06/28/2025
Source (or email address if you prefer)*
[email protected]
IP address:.172.69.59.212
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)))