NETWORKDAYS |
NETWORKDAYS(start_date, end_date [,holidays]) |
Returns the total number of working days between two dates excluding weekends and holidays. |
start_date | The starting date. |
end_date | The finishing date. |
holidays | (Optional) An array of dates to exclude. |
REMARKS |
* NETWORKDAYS.INTL was added in Excel 2010 to replace this function. * The NETWORKDAYS.INTL function allows you to specify what days you want to treat as weekends. * This function has an explicit assumption that weekends are Saturday and Sunday. * This function excludes weekends and any other dates specified in the "holidays" array. * Both the "start_date" and the "end_date" are included in the total count. * If "start_date" is not a valid date, then #VALUE! is returned. * If "end_date" is not a valid date, then #VALUE! is returned. * If "holidays" is left blank, then only weekends will be excluded. * The "holidays" allows you to specify bank holidays as well as any other floating holidays. * The "holidays" can either be range of cells containing dates or an array constant of serial numbers. * If "holidays" contains anything that is not a valid date, then #NUM! is returned. * You can use the DATE function to return the date as a date serial number given a year, month, day. * You can use the DATEVALUE function to return the date serial number given a date in text format. * You can use the WORKDAY.INTL to return the date serial number that is a given number of working days before or after a date. * You can use the NETWORKDAYSMISC - User Defined Function to return the number of days between two dates using a defined list of workdays. * For the Microsoft documentation refer to support.microsoft.com * For the Google documentation refer to support.google.com |
|
1 - How many working days are there between 1 Jan 2021 and 1 Jan 2021. This day was a Friday. 2 - How many working days are there between 1 Jan 2022 and 1 Jan 2022. This day was a Saturday. |
© 2024 Better Solutions Limited. All Rights Reserved. © 2024 Better Solutions Limited Top