+ Reply to Thread
Results 1 to 11 of 11

Excel 2000 - show billable days

  1. #1
    Registered User
    Join Date
    12-16-2008
    Location
    Northern California
    Posts
    6

    Excel 2000 - show billable days

    I have been asked to create a spreadsheet that will contain three fields;

    Date of placement (the day the person arrived)
    Date of release (the above + 60 days)
    Billable days for the current month

    The first is simple, the clerk will enter the current date when the person arrives.

    For the second field I am using:: =SUM(H5+(60),) (H5 is todays date, and will display the results in I5). When H5 is blank, I get the " #VALUE!" error in I5? Is there a more effective function to use?

    For billable days, I am using; =SUM(J2 - (H5),) (J2 is simply the last date of the month; 12/31/09, and H5 is the placement date). I want to show the number of billable days in the current month. This will be repeated on 12 sheets (one for each month).

    Any suggestions greatly appreciated,

    Thanks!
    Ralph
    Last edited by php4u; 12-17-2008 at 10:21 PM.

  2. #2
    Forum Contributor EdMac's Avatar
    Join Date
    01-23-2006
    Location
    Exeter, UK
    MS-Off Ver
    2003
    Posts
    1,264
    try

    For the first

    =if(H5="","",H5+60)

    for the second

    =if(H5="","",J2-H5)
    Ed
    _____________________________
    Always learning, but never enough!
    _____________________________

  3. #3
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200
    In I5, try

    =IF(H5,H5+60,"")

    Is every day a billable day, or only weekdays?
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  4. #4
    Registered User
    Join Date
    12-16-2008
    Location
    Northern California
    Posts
    6

    Excel 2000 billable days

    EdMac and royUK, thank you very much for the prompt response, this forum is verrry helpful!

    Ok, I am getting the same result (#VALUE!) in the empty cells. See the attached file; (ALL days are billable)

    H column - is a field where the clerk will enter the date the person arrives.

    I column - is the field that has a formula that heads H and adds 60 days.

    Cell J2 contains the last date of the month (12/31/08), which is used to calculate the next column - billable days.

    Billable days is J5-J50, which should subtract H from J2? (e.g. =IF(H5="","",H5+60)

    The bottom of the sheet simply totals the columns.

    Thanks a bunch, we are almost there!
    Ralph
    Attached Files Attached Files
    Last edited by php4u; 12-16-2008 at 07:10 PM.

  5. #5
    Registered User
    Join Date
    12-16-2008
    Location
    Northern California
    Posts
    6
    Quote Originally Posted by php4u View Post
    EdMac and royUK, thank you very much for the prompt response, this forum is verrry helpful!

    Ok, I am getting the same result (#VALUE!) in the empty cells. See the attached screen-shots; (ALL days are billable)

    H column - is a field where the clerk will enter the date the person arrives.

    I column - is the field that has a formula that heads H and adds 60 days.

    Cell J2 contains the last date of the month (12/31/08), which is used to calculate the next column - billable days.

    Billable days is J5-J50, which should subtract H from J2? (e.g. =IF(H5="","",H5+60)

    The bottom of the sheet simply totals the columns.

    Thanks a bunch, we are almost there!
    Ralph
    Is there a way to hide the "#VALUE!" errors so the totals will calculate correctly? Or is my formula incorrect?
    Last edited by php4u; 12-16-2008 at 11:58 PM. Reason: correction to formula / new formula did not work

  6. #6
    Forum Contributor EdMac's Avatar
    Join Date
    01-23-2006
    Location
    Exeter, UK
    MS-Off Ver
    2003
    Posts
    1,264
    OK

    In F5

    Please Login or Register  to view this content.
    In G5

    Please Login or Register  to view this content.
    and copy down

  7. #7
    Registered User
    Join Date
    12-16-2008
    Location
    Northern California
    Posts
    6

    Excel 2000 billable days - date publish incorrect

    Thanks EdMac!

    The 1st formula provides a static date of " 2/29/00 " which is ok I suppose.

    The second formula provides a result of " 39814 " which I think is some sort of date series (format) used by Excel. The problem with the readout is that it adds erroneously to the total. If there is no data in the row, then the cell should read blank, true? However, when I type in the "Placement" date in the proceeding column, the billable days column calculates the result correctly. - correct calculation, incorrect empty readout.

    Is there an argument we can add to to suppress the output if the cell is blank?
    Last edited by php4u; 12-17-2008 at 12:12 PM. Reason: readout

  8. #8
    Forum Contributor EdMac's Avatar
    Join Date
    01-23-2006
    Location
    Exeter, UK
    MS-Off Ver
    2003
    Posts
    1,264
    Cells must be formatted as date

    Both formulae should provide blank if no input - they did when I tested it

  9. #9
    Registered User
    Join Date
    12-16-2008
    Location
    Northern California
    Posts
    6

    Thumbs up Billable Date solved!



    Nicely done! I cleared the contents and re-tested the process and works as designed.

    Thank you very much for your assistance. This forum is the best!

    ~Ralph
    p.s. I hope this thread helps someone else.

  10. #10
    Forum Contributor VBA Noob's Avatar
    Join Date
    04-25-2006
    Location
    London, England
    MS-Off Ver
    xl03 & xl 07(Jan 09)
    Posts
    11,988
    If you are satisfied with the solution(s) provided, please mark your thread as Solved.

    How to mark a thread Solved
    Go to the first post
    Click edit
    Click Go Advanced
    Just below the word Title you will see a dropdown with the word No prefix.
    Change to Solved
    Click Save
    _________________________________________


    Credo Elvem ipsum etian vivere
    _________________________________________
    A message for cross posters

    Please remember to wrap code.

    Forum Rules

    Please add to your signature if you found this link helpful. Excel links !!!

  11. #11
    Registered User
    Join Date
    12-16-2008
    Location
    Northern California
    Posts
    6
    Changed to solved.

    A new issue has come up; the date "2/29/00" appears in empty date cells where I added a new column?

    In F5
    Code:
    =IF(ISERROR(E5+60),"",E5+60)

    The cells are formated for "date" - (3/1/08)

    Any suggestions?
    Thank you in advance!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1