#1   Report Post  
Ltat42a
 
Posts: n/a
Default Help with two items


Hi...maybe you can help.
I made a spreadsheet to track monies spent on overtime. I have over 20
people that I'm tracking for. I have their name, number of hours, their
hire date, and their hourly rate.

I need help with two items -
1. I have a section of the spreadsheet that summarizes everyone's name
and the entire amount spent on OT. I'm using the formula =B2 to copy
their name from cell B2 to L121. If there is no name listed in B2, L121
returns a value of 0. How can I show L121 as blank instead of 0? If a
name is listed in B2, then it will appear in L121.

2. I'm using a date calculation to tell me how long they have been
employed -
=DATEDIF(A7,TODAY(),"m")/12.
This gives me their time in service on the job. It gives me the
calculation in a 2 decimal format. I need it in a whole number. When I
change the format to a whole number, Excel rounds the number up if the
value is more than .50 (i.e. 20.75 is rounded up to 21). How can I keep
Excel from rounding the number up?
20.75 years should read as 20 years instead of 21 years.

Any suggestions?
Thanx in advance......Ltat42a


--
Ltat42a
------------------------------------------------------------------------
Ltat42a's Profile: http://www.excelforum.com/member.php...o&userid=24735
View this thread: http://www.excelforum.com/showthread...hreadid=466602

  #2   Report Post  
Cutter
 
Posts: n/a
Default


Good morning Ltat42a

For #1 do this:

=IF(B2="","",B2)

For #2 do this:

=TRUNC(DATEDIF(A7,TODAY(),"m")/12)


--
Cutter
------------------------------------------------------------------------
Cutter's Profile: http://www.excelforum.com/member.php...fo&userid=9848
View this thread: http://www.excelforum.com/showthread...hreadid=466602

  #3   Report Post  
Sandy Mann
 
Posts: n/a
Default

"Ltat42a" wrote in
message ...


=DATEDIF(A7,TODAY(),"m")/12.


If you want the answer in whole numbers why calculate it in months first?

=DATEDIF(A7,TODAY(),"y")

--
HTH

Sandy

Replace@mailinator with @tiscali.co.uk


"Ltat42a" wrote in
message ...

Hi...maybe you can help.
I made a spreadsheet to track monies spent on overtime. I have over 20
people that I'm tracking for. I have their name, number of hours, their
hire date, and their hourly rate.

I need help with two items -
1. I have a section of the spreadsheet that summarizes everyone's name
and the entire amount spent on OT. I'm using the formula =B2 to copy
their name from cell B2 to L121. If there is no name listed in B2, L121
returns a value of 0. How can I show L121 as blank instead of 0? If a
name is listed in B2, then it will appear in L121.

2. I'm using a date calculation to tell me how long they have been
employed -
=DATEDIF(A7,TODAY(),"m")/12.
This gives me their time in service on the job. It gives me the
calculation in a 2 decimal format. I need it in a whole number. When I
change the format to a whole number, Excel rounds the number up if the
value is more than .50 (i.e. 20.75 is rounded up to 21). How can I keep
Excel from rounding the number up?
20.75 years should read as 20 years instead of 21 years.

Any suggestions?
Thanx in advance......Ltat42a


--
Ltat42a
------------------------------------------------------------------------
Ltat42a's Profile:
http://www.excelforum.com/member.php...o&userid=24735
View this thread: http://www.excelforum.com/showthread...hreadid=466602



  #4   Report Post  
Ltat42a
 
Posts: n/a
Default


Whew! That works great - THANX SO MUCH!!!


...Ltat42a


--
Ltat42a
------------------------------------------------------------------------
Ltat42a's Profile: http://www.excelforum.com/member.php...o&userid=24735
View this thread: http://www.excelforum.com/showthread...hreadid=466602

  #5   Report Post  
Ltat42a
 
Posts: n/a
Default


Ok, I'll try that - Thanx.

I do have a nother question.
I'm using this formula to calculate promotion dates, in cell C22, I
have -
=IF(A22<"",DATEDIF(A22,TODAY(),"m")/12,"")
If no date is entered, cell C22 remains blank. When someone does
promote, I'll enter the date, cell C22 will start calculating their
time in position.

Now....using my question #2, I want to calculate their promotion in
whole numbers, but, I want the cell value to be left blank until a date
is entered.
How can I do that?


Sandy Mann Wrote:
"Ltat42a" wrote
in
message ...


=DATEDIF(A7,TODAY(),"m")/12.


If you want the answer in whole numbers why calculate it in months
first?

=DATEDIF(A7,TODAY(),"y")

--
HTH

Sandy

Replace@mailinator with @tiscali.co.uk


"Ltat42a" wrote
in
message ...

Hi...maybe you can help.
I made a spreadsheet to track monies spent on overtime. I have over

20
people that I'm tracking for. I have their name, number of hours,

their
hire date, and their hourly rate.

I need help with two items -
1. I have a section of the spreadsheet that summarizes everyone's

name
and the entire amount spent on OT. I'm using the formula =B2 to copy
their name from cell B2 to L121. If there is no name listed in B2,

L121
returns a value of 0. How can I show L121 as blank instead of 0? If

a
name is listed in B2, then it will appear in L121.

2. I'm using a date calculation to tell me how long they have been
employed -
=DATEDIF(A7,TODAY(),"m")/12.
This gives me their time in service on the job. It gives me the
calculation in a 2 decimal format. I need it in a whole number. When

I
change the format to a whole number, Excel rounds the number up if

the
value is more than .50 (i.e. 20.75 is rounded up to 21). How can I

keep
Excel from rounding the number up?
20.75 years should read as 20 years instead of 21 years.

Any suggestions?
Thanx in advance......Ltat42a


--
Ltat42a

------------------------------------------------------------------------
Ltat42a's Profile:
http://www.excelforum.com/member.php...o&userid=24735
View this thread:

http://www.excelforum.com/showthread...hreadid=466602



--
Ltat42a
------------------------------------------------------------------------
Ltat42a's Profile: http://www.excelforum.com/member.php...o&userid=24735
View this thread: http://www.excelforum.com/showthread...hreadid=466602



  #6   Report Post  
Cutter
 
Posts: n/a
Default


Similar to your other one, try this (using Sandy Mann's suggestion):

=IF(A22<"",DATEDIF(A22,TODAY(),"y"),"")


--
Cutter
------------------------------------------------------------------------
Cutter's Profile: http://www.excelforum.com/member.php...fo&userid=9848
View this thread: http://www.excelforum.com/showthread...hreadid=466602

  #7   Report Post  
Sandy Mann
 
Posts: n/a
Default

If I follow you correctly try:

=IF(A22="","",DATEDIF(A22,TODAY(),"y")&" Years "&DATEDIF(A22,TODAY(),"ym")&"
Months & "&DATEDIF(A22,TODAY(),"md")&" Days")

which with 15/8/2003 in A22 will return:

2 Years 0 Months & 27 Days

--
HTH

Sandy

Replace@mailinator with @tiscali.co.uk

"Ltat42a" wrote in
message ...

Ok, I'll try that - Thanx.

I do have a nother question.
I'm using this formula to calculate promotion dates, in cell C22, I
have -
=IF(A22<"",DATEDIF(A22,TODAY(),"m")/12,"")
If no date is entered, cell C22 remains blank. When someone does
promote, I'll enter the date, cell C22 will start calculating their
time in position.

Now....using my question #2, I want to calculate their promotion in
whole numbers, but, I want the cell value to be left blank until a date
is entered.
How can I do that?


Sandy Mann Wrote:
"Ltat42a" wrote
in
message ...


=DATEDIF(A7,TODAY(),"m")/12.


If you want the answer in whole numbers why calculate it in months
first?

=DATEDIF(A7,TODAY(),"y")

--
HTH

Sandy

Replace@mailinator with @tiscali.co.uk


"Ltat42a" wrote
in
message ...

Hi...maybe you can help.
I made a spreadsheet to track monies spent on overtime. I have over

20
people that I'm tracking for. I have their name, number of hours,

their
hire date, and their hourly rate.

I need help with two items -
1. I have a section of the spreadsheet that summarizes everyone's

name
and the entire amount spent on OT. I'm using the formula =B2 to copy
their name from cell B2 to L121. If there is no name listed in B2,

L121
returns a value of 0. How can I show L121 as blank instead of 0? If

a
name is listed in B2, then it will appear in L121.

2. I'm using a date calculation to tell me how long they have been
employed -
=DATEDIF(A7,TODAY(),"m")/12.
This gives me their time in service on the job. It gives me the
calculation in a 2 decimal format. I need it in a whole number. When

I
change the format to a whole number, Excel rounds the number up if

the
value is more than .50 (i.e. 20.75 is rounded up to 21). How can I

keep
Excel from rounding the number up?
20.75 years should read as 20 years instead of 21 years.

Any suggestions?
Thanx in advance......Ltat42a


--
Ltat42a

------------------------------------------------------------------------
Ltat42a's Profile:
http://www.excelforum.com/member.php...o&userid=24735
View this thread:

http://www.excelforum.com/showthread...hreadid=466602



--
Ltat42a
------------------------------------------------------------------------
Ltat42a's Profile:
http://www.excelforum.com/member.php...o&userid=24735
View this thread: http://www.excelforum.com/showthread...hreadid=466602



  #8   Report Post  
Ltat42a
 
Posts: n/a
Default


Cutter Wrote:
Similar to your other one, try this (using Sandy Mann's suggestion):

=IF(A22<"",DATEDIF(A22,TODAY(),"y"),"")



Thanx....that does work good!

I appreciate the help....Ltat42a


--
Ltat42a
------------------------------------------------------------------------
Ltat42a's Profile: http://www.excelforum.com/member.php...o&userid=24735
View this thread: http://www.excelforum.com/showthread...hreadid=466602

  #9   Report Post  
Ltat42a
 
Posts: n/a
Default


I used =IF(A22<"",DATEDIF(A22,TODAY(),"y"),"") for both the time in
service calculation and the promotion calculation. I then formatted the
cell as a whole number - no decimals, and both work good.

The earlier formula I used that counted months then divided by 12, I
got that here on this forum, but the formula above works better.

Thank you all for the tips!

....Ltat42a


--
Ltat42a
------------------------------------------------------------------------
Ltat42a's Profile: http://www.excelforum.com/member.php...o&userid=24735
View this thread: http://www.excelforum.com/showthread...hreadid=466602

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Pivot Table - untick all items in row field DD1 Excel Discussion (Misc queries) 6 May 3rd 06 07:17 PM
multiple items in database Peter Excel Worksheet Functions 2 June 15th 05 08:19 PM
Computing totals for tax and non-tax items Dan Wilson Excel Worksheet Functions 2 March 31st 05 01:05 AM
Pivot Table unable to Include Hidden Items In Subtotals TC319 Charts and Charting in Excel 0 February 24th 05 08:53 PM
Can't group pivot table items by month in Excel scott_ensley Excel Discussion (Misc queries) 1 February 1st 05 08:41 PM


All times are GMT +1. The time now is 05:20 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"