← All functions

DAYS

Supported, behaves as documented

Category: Date and time · Last tested 2026-07-04

Support matrix

EngineDocumentedLive-testedVerdict
Excel Yes Not yet n/a
Google Sheets Yes Not yet n/a
LibreOffice Calc Yes Yes (24.2.7.2, 2026-07-04) Supported, behaves as documented

Executed test cases

LibreOffice Calc 24.2.7.2 (tested 2026-07-04)

FormulaDescriptionResultExpectedVerdict
=DAYS(DATE(2024,3,15),DATE(2024,3,1)) DAYS takes END_DATE FIRST, then start_date -- the opposite argument order from DAYS360/YEARFRAC. Verified via https://support.microsoft.com/en-us/office/days-function-57740535-d549-4395-8728-0f07bff0b9df ("DAYS(end_date, start_date)") 14 14
2024-03-15 minus 2024-03-01 = 14 days
Matched
=DAYS(DATE(2024,3,1),DATE(2024,3,15)) Swapping which date is passed first (now the earlier date is 'end_date') flips the sign -- reinforcing that argument order is significant and not auto-corrected -14 -14
Same two dates as DAYS_basic_end_first_argument_order but with roles swapped -> -14
Matched
=DAYS("15-MAR-2021","1-FEB-2021") Microsoft's own documented example, using text dates parsed as if by DATEVALUE 42 42
Exact example from the DAYS function documentation
Matched
=DAYS(DATE(2021,12,31),DATE(2021,1,1)) A second literal example from the same Microsoft documentation page 364 364
Dec 31, 2021 minus Jan 1, 2021 = 364 days
Matched

Docs & syntax