Protecting and Auto fill Columns

B

bshuemaker

Hello everyone,

I am trying to create a spreadsheet that will track the dates of a new hire
that has certain things to be complete. For example:
The new hire reported on 4/25/2008
The new hire will be on probation for 6 months (10/25/2008) (need data to
auto fill into the spreadsheet).
The new hire will be certified 12 months later on date (4/25/2009) need data
to auto fil into the spreadsheet)

Here is the formula that i came up with,
report date Column F
=SUM(F2:F214+180) (6 months probation) Column G (auto fill from column f
with new date)
=SUM(F2:F214+365) (12 months to get certified) Colum H (auto fill from
column f with new date)

If this sounds confusing, please let me know, and I can email you a copy of
my spreadsheet. Thank you for your help.
 
S

Spiky

Hello everyone,

I am trying to create a spreadsheet that will track the dates of a new hire
that has certain things to be complete. For example:
The new hire reported on 4/25/2008
The new hire will be on probation for 6 months (10/25/2008) (need data to
auto fill into the spreadsheet).
The new hire will be certified 12 months later on date (4/25/2009) need data
to auto fil into the spreadsheet)

Here is the formula that i came up with,
report date Column F
=SUM(F2:F214+180) (6 months probation) Column G (auto fill from column f
with new date)
=SUM(F2:F214+365) (12 months to get certified) Colum H (auto fill from
column f with new date)

If this sounds confusing, please let me know, and I can email you a copy of
my spreadsheet. Thank you for your help.

So, what exactly are you asking? I'm not sure how a SUM helps you.

This is probably a better way if you are just trying to find dates,
since 180 days is not necessarily 6 months:
=EDATE(A2,6)
That gives you the date 6 months from the date in A2.
 
N

NoodNutt

Hi B

You don't need to sum it

F2 = Your inputDate
G2 = A1+180
H2 = A1+365

Format each as Date (yourFormatingPreference)

Then copy G2 & H2 down the Columns.

HTH
Mark.
 
B

bshuemaker

Spiky,

This worked great.
One last thing. How do I input this to aply to the whole column vice typing
this into each cell. I just want the end user to type the person name,
department and report date, and have the rest of the date to fill in
automatically.
Just reminder that you have to have the Analysis ToolPak Add-Ins installed
so this can work.
Thank you for your help.
 
S

Spiky

Spiky,

This worked great.
One last thing. How do I input this to aply to the whole column vice typing
this into each cell. I just want the end user to type the person name,
department and report date, and have the rest of the date to fill in
automatically.
Just reminder that you have to have the Analysis ToolPak Add-Ins installed
so this can work.
Thank you for your help.


Just copy the formulas down the whole column. I mean, as far down as
you want it to go. Make sure there aren't any dollar signs in the
formula references.
 

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