How to calculate a response time of 1 to 5 days

P

Peggy

I am currently using the formula provided in Excel help
which allows me to calculate the number of working days
(NETWORKDAYS) between two dates (Date Received and Date
Due).

Now I need to have my spreadsheet show only the dates
(between Date Received and Date due) that have a response
time of 1 to 5 days.

I'm not sure how to have my spreadsheet calculate this.
Can someone help?


Thanks,
Peggy
 
A

Andy B

Hi

You could use an IF function:
=IF(AND(NETWORKDAYS(Start,End,Holidays)>=1,
NETWORKDAYS(Start,End,Holidays)<=5),NETWORKDAYS(Start,End,Holidays),"")
Or you could use Format / Conditional Formatting, with the Cell Is box not
being between 1 and 5, and set your font to white

Hope this helps.
 

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

Top