
Contributor III
2020-05-26
04:09 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Calculation to calculate the time duration (days) between two dates?
Hello all,
Say I have 2 basic dates (Date In, Date Out), what's an expression to calculate the duration of the two dates (preferably in days)
Load * Inline [
Date In,Date Out
02/03/2020,02/05/2020
02/03/2020,02/09/2020
02/03/2020,02/11/2020
02/03/2020,03/03/2020
];
THANKS!
1 Solution
Accepted Solutions

MVP
2020-05-26
04:20 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Maye be
Date([Date Out])-Date([Date In])
Regards,
Taoufiq ZARRA
"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "
(you can mark up to 3 "solutions") 😉
Taoufiq ZARRA
"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "
(you can mark up to 3 "solutions") 😉
2,284 Views
2 Replies

MVP
2020-05-26
04:20 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Maye be
Date([Date Out])-Date([Date In])
Regards,
Taoufiq ZARRA
"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "
(you can mark up to 3 "solutions") 😉
Taoufiq ZARRA
"Please LIKE posts and "Accept as Solution" if the provided solution is helpful "
(you can mark up to 3 "solutions") 😉
2,285 Views


Creator II
2020-05-26
04:26 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try this NUM(FLOOR([Date Out]) - FLOOR([Date In]),'#,##0')
You may want different formatting.
2,281 Views
