Dates

S

sharonn

I developing a small project plan in excel - starting with project end date
and subtracting task durations to get to start date. Using
=DATE(YEAR(D30),MONTH(D30),DAY(D30)-C29) to get to the next earlier date.
Problem is I need to exclude weekend dates. D30=end date. C29=duration of
task. How do I do that?
 
P

Peo Sjoblom

=WORKDAY(DATE(YEAR(D30),MONTH(D30),DAY(D30)),-C29)

however if you have a date in D30 you don't need the DATE function

=D30-C29

or


=WORKDAY(D30,-C29)


--


Regards,


Peo Sjoblom
 
S

sharonn

I already tried both of these
=workday(E24,D23) results in #NAME? and
=workDAY(DATE(YEAR(D30),MONTH(D30),DAY(D30)-C29)) results in #NAME?
what am I doing wrong? thx
 
P

Peo Sjoblom

Tools>add-ins, select ATP (Analysis Toolpak)
and keep the installation CD handy.

It comes with Excel but might not be installed at first time,
if it is a company PC ask IT to install it if it doesn't install
when you check under add-ins



--


Regards,


Peo Sjoblom
 
S

sharonn

Perfect - thank you!

Peo Sjoblom said:
Tools>add-ins, select ATP (Analysis Toolpak)
and keep the installation CD handy.

It comes with Excel but might not be installed at first time,
if it is a company PC ask IT to install it if it doesn't install
when you check under add-ins



--


Regards,


Peo Sjoblom
 

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