
Not applicable
2016-11-16
07:32 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Calculating number of days between two date fields
Hi ... I want to calculate the number of days between two date fields in MM/DD/YYYY format.
What would be the best way ?
Thanks
19,980 Views
1 Solution
Accepted Solutions


Creator II
2016-11-16
07:46 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
=date(Field_name,'MM/DD/YYYY')- date(Field_name,'MM/DD/YYYY')
2 Replies


MVP
2016-11-16
07:36 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
(Real) dates are just numbers - therefore you could calculate: Date2 - Date1. If they are not dates than you need to convert them with date#() and maybe with floor() to cut a time-part.
- Marcus
19,380 Views


Creator II
2016-11-16
07:46 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
=date(Field_name,'MM/DD/YYYY')- date(Field_name,'MM/DD/YYYY')
