Calendar or Workdays in a Month

  • Thread starter Thread starter mdalby
  • Start date Start date
M

mdalby

There doesn't appear to be a function that calculates the number o
calendar days or the number of work days (Monday-Friday) in a month.
Is there a formula I can use?

Thanks,

M
 
Hi
to calculate the days in a month use
=DAY(DATE(YEAR(A1),MONTH(A1)+1,0))
If A1 stores a date

For working days in a month use
=NETWORKDAYS(DATE(YEAR(A1),MONTH(A1),1),DATE(YEAR(A1),MONTH(A1)+1,0))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top