NETWORKDAYS
Returns the number of whole workdays between two dates (inclusive). Weekend days are not considered as workdays.
Syntax: NETWORKDAYS (
start_date
,
end_date
)
Example: NETWORKDAYS ( DATE ( 2023 , 01 , 01 ) , DATE (2023 , 12 , 31 ) )
Output: 260
Example: NETWORKDAYS ( BOMONTH ( This month ) , EOMONTH ( This month ) )
Output: 21
(for November 2024)
Last updated
Was this helpful?