Instructions for using the Networksday function in excel
The following article details the calculation of workdays using Networksday.
1. Structure and meaning of functions
- Structure: Networksday (start_day, end_day, [holidays]) .
Inside:
+ start_day: The start date.
+ end_day: End date.
+ [holidays]: Holidays.
- Meaning: The function returns the total number of working days except weekends and holidays.
2. For example
There is a data sheet to calculate the total number of employees working days.
2.1. Calculate the total working days without holidays
Enter the formula NETWORKDAYS (C3, D3) .
2.2. Calculate the total working day with 1 day off
For Tran Minh employees, there is one public holiday -> total working days minus holidays.
Enter the formula: NETWORKDAYS (C3, D3, I3).
2.3. Calculate the total number of working days with more than 1 day off
With Vu Hang employees have 2 days off sick and holidays -> enter the formula: NETWORKDAYS (C4, D4, E4: E5).
Note: You should apply the formula in " 2.3 Calculating the total working days with more than 1 day off " for all cases.
Good luck!
You should read it
- How to use the NPER function in Excel to plan loans and savings
- Basic Excel functions that anyone must know
- How to use Hlookup function on Excel
- How to use the SUM function to calculate totals in Excel
- Instructions on how to use the Dmax function in Excel
- How to use the LEN function in Excel
- How to use the RANDARRAY function to randomly classify data in Excel
- How to use COUNTIF function on Excel
May be interested
- Normalize string when pressing Enter key in Excelthe following article will guide in detail how to use functions to normalize strings when pressing the enter key in excel. this function will remove spaces at the beginning and end of the line, delete two consecutive white space characters between words.
- Instructions to merge multiple Excel files into 1 Filedetailed instructions on how to combine multiple excel files into a single file with macro.
- Count the number of Saturdays and Sundays in any period in Excelinstructions to count the number of saturdays and sundays in any period in excel. the following article details how to calculate the number of 7th, sunday or any day in excel in many ways.
- Summary of data from multiple Sheets in Excelthe following article details how to aggregate data from multiple sheets in excel.
- Split numbers from strings in Excelin the process of working with excel, i have encountered some cases that require separating only the fraction in a given string, now this post shares with you how to do this. the following article details how to separate numbers from a given string in excel.
- Calculate by cell background color in Exceldetailed instructions on how to sum data cells by cell background color in excel by building a macro function that calculates the cell background color. example: the colors have corresponding values. sum the values corresponding to the cell's background color.