NETWORKDAYS.INTL Function – Google Sheets

NETWORKDAYS.INTL calculates the number of working days between two dates. The function excludes weekends (which may or may not be Saturday and Sunday) and can optionally exclude holidays. If your weekends are Saturday and Sunday, consider using the simpler NETWORKDAYS function. 💡 The start_date and end_date are included in the count of days. Syntax =NETWORKDAYS.INTL(start_date,end_date,[weekend day(s)],[holiday(s)]) start_date The date at … Read more

NETWORKDAYS Function – Google Sheets

The NETWORKDAYS function calculates the number of working days between two dates. The function excludes weekends (Saturday and Sunday) and can exclude holidays if you provide a list. If you have weekends other than Saturday and Sunday, use the NETWORKDAYS.INTL function. 💡 The start_date and end_date are included in the count of days. Syntax =NETWORKDAYS(start_date,end_date,[holiday(s)]) … Read more

TIMEVALUE Function – Google Sheets

The TIMEVALUE function converts a time to a decimal value between 0 (inclusive) and 1 (exclusive). The function can convert time stored as a string or a number. Google Sheets works with times in formulas as fractions of a number, not as text strings. This function converts times into their usable form. For example, 12 … Read more

DAYS360 Function – Google Sheets

The DAYS360 function calculates days using 30 days for each month. When using a 365-day daily interest rate computation, the interest rate is divided by 365 and multiplied by the principal for each day you calculate interest. When using a 360-day year method, the interest rate is divided by 360 and multiplied by the principal … Read more

WORKDAY.INTL Function – Google Sheets

The WORKDAY.INTL function calculates a workday a given number of workdays away from a date. You can optionally specify a list of holidays to exclude from the count and other weekends. If your days, months, and years are in separate cells, use the DATE function to combine them. This function is different from the WORKDAY … Read more