Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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!
Maye be
Date([Date Out])-Date([Date In])
Maye be
Date([Date Out])-Date([Date In])
Try this NUM(FLOOR([Date Out]) - FLOOR([Date In]),'#,##0')
You may want different formatting.