View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Sadad Sadad is offline
external usenet poster
 
Posts: 2
Default How do I set NETWORKDAYS to regard friday and saturday as week

PERFECT... IT WORKS :)

Thanks you...

"Biff" wrote:

Hi!

Try this:

A1 = start date
A2 = end date

=NETWORKDAYS(A1+1,A2+1)

If you need to exclude holidays:

H1:H10 = list of holiday dates

Entered as an array using the key combination of CTRL,SHIFT,ENTER.

=NETWORKDAYS(A1+1,A2+1,H1:H10+1)

Biff

"Shay.C." wrote in message
...
The NETWORKDAYS function regards Saturday and Sunday as weekends. I need
to
set Excel to regard Friday and Saturday as the weekend.