#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default vacation tracker

Im working on a vacation tracker, so far I have start date, todays
date, days360,
=IF(D5<360,"0",IF(D5<720,"5",IF(D5<1800,"10",IF (D5<3600,"15",IF(D5=3600,"20","")))))
(returns the number of days earned.) days used, days left. Is there a
way to get excel to add the correct number of days to the available days on
the anniversary date? Or does someone already have a vacation tracker made
that they wouldnt mind sharing?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default vacation tracker

Two comments on your formula:
If you want the answer to be a number, rather than a text string, throw away
the quotes around the "numbers".
You don't need to test for =3600, because you've already covered the cases
where D5<3600.

Your formula can therefore become
=IF(D5<360,0,IF(D5<720,5,IF(D5<1800,10,IF(D5<3600, 15,20))))

If the question you are asking is how to calculate the number of days
worked, given a start date in A5, the answer is =TODAY()-A5 (with the result
formatted as a number or general, not a date).
--
David Biddulph

"RRyan" wrote in message
...
I'm working on a vacation tracker, so far I have "start date", "today's
date", "days360",
"=IF(D5<360,"0",IF(D5<720,"5",IF(D5<1800,"10",IF(D 5<3600,"15",IF(D5=3600,"20","")))))"
(returns the number of days earned.) "days used", "days left". Is there a
way to get excel to add the correct number of days to the available days
on
the anniversary date? Or does someone already have a vacation tracker
made
that they wouldn't mind sharing?



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default vacation tracker

Thanks for the first suggestion it works great. What I'm trying to do is
track Vacation time. If an employee has time left to take on his/her
anniversary I would like to have the proper number of days added to the days
left. I can't find anything to suggest that excel will do this.

"David Biddulph" wrote:

Two comments on your formula:
If you want the answer to be a number, rather than a text string, throw away
the quotes around the "numbers".
You don't need to test for =3600, because you've already covered the cases
where D5<3600.

Your formula can therefore become
=IF(D5<360,0,IF(D5<720,5,IF(D5<1800,10,IF(D5<3600, 15,20))))

If the question you are asking is how to calculate the number of days
worked, given a start date in A5, the answer is =TODAY()-A5 (with the result
formatted as a number or general, not a date).
--
David Biddulph

"RRyan" wrote in message
...
I'm working on a vacation tracker, so far I have "start date", "today's
date", "days360",
"=IF(D5<360,"0",IF(D5<720,"5",IF(D5<1800,"10",IF(D 5<3600,"15",IF(D5=3600,"20","")))))"
(returns the number of days earned.) "days used", "days left". Is there a
way to get excel to add the correct number of days to the available days
on
the anniversary date? Or does someone already have a vacation tracker
made
that they wouldn't mind sharing?



.

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
Tracker CX Manager NY Excel Worksheet Functions 2 September 12th 08 12:27 AM
PlS Help ABT STOCK TRACKER ronald_peterson Excel Discussion (Misc queries) 18 June 1st 06 10:57 AM
MIS tracker Raj Excel Worksheet Functions 0 May 24th 06 02:38 PM
Date Vacation Tracker jopla Excel Worksheet Functions 6 January 11th 06 11:38 PM
Looking for a vacation tracker GeorgieP Excel Discussion (Misc queries) 0 July 21st 05 06:27 PM


All times are GMT +1. The time now is 11:15 AM.

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"