From f63d307feca6f9150b6145772f5124d9f4d7fa17 Mon Sep 17 00:00:00 2001 From: Steve Fanning Date: Thu, 2 Jan 2025 17:05:02 +0000 Subject: [PATCH] Fix typo to reflect minimum serial number of 1. --- docs/src/functions/date_and_time/month.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/functions/date_and_time/month.md b/docs/src/functions/date_and_time/month.md index 734e2b0..3ccf517 100644 --- a/docs/src/functions/date_and_time/month.md +++ b/docs/src/functions/date_and_time/month.md @@ -23,7 +23,7 @@ MONTH returns an integer [number](/features/value-types#numbers) in the range [1 * If no argument, or more than one argument, is supplied, then MONTH returns the [`#ERROR!`](/features/error-types.md#error) error. * If the value of the *date* argument is not (or cannot be converted to) a [number](/features/value-types#numbers), then MONTH returns the [`#VALUE!`](/features/error-types.md#value) error. * For some argument values, MONTH may return the [`#DIV/0!`](/features/error-types.md#div-0) error. -* If date is less than 0, or greater than or equal to 2,958,466, then MONTH returns the [`#NUM!`](/features/error-types.md#num) error. +* If date is less than 1, or greater than or equal to 2,958,466, then MONTH returns the [`#NUM!`](/features/error-types.md#num) error. * At present, MONTH does not accept a string representation of a date literal as an argument. For example, the formula `=MONTH("2024-12-31")` returns the [`#VALUE!`](/features/error-types.md#value) error. ## Details