+ Reply to Thread
Results 1 to 6 of 6

Hiding a total until all values are filled

  1. #1
    DCZ
    Guest

    Hiding a total until all values are filled

    I want to forcast certain dates based on a persons age. For example, my
    daughter was born on 11-5-96. I want to forcast her 8th, 12th, and 18th
    birthday. I am wanting to do this for a hundred or so youth at our church.
    So, I put in the following =DATE(YEAR(B1)+8,MONTH(B1),DAY(B1)) in A1. The
    problem I have is I have an incorrect date in A1 until a date is entered.
    Excel wants to put in 31-Dec-07 if B1 is blank. How can I keep A1 blank until
    I have entered B1 without entering it all in one at a time, the whole of
    column A will have the same equation with regards to its row. I am just new
    to Excel and I'm not sure what all options or tools are available to me. Any
    Help?

  2. #2
    Don Guillett
    Guest

    Re: Hiding a total until all values are filled

    try
    =if(or(b1="",b1=" "),"",yourformula)
    or
    if(len(b1)<2,"",yourformula)

    --
    Don Guillett
    SalesAid Software
    dguillett1@austin.rr.com
    "DCZ" <DCZ@discussions.microsoft.com> wrote in message
    news:5D501785-8639-4C0D-AF5F-A3086B572536@microsoft.com...
    >I want to forcast certain dates based on a persons age. For example, my
    > daughter was born on 11-5-96. I want to forcast her 8th, 12th, and 18th
    > birthday. I am wanting to do this for a hundred or so youth at our church.
    > So, I put in the following =DATE(YEAR(B1)+8,MONTH(B1),DAY(B1)) in A1. The
    > problem I have is I have an incorrect date in A1 until a date is entered.
    > Excel wants to put in 31-Dec-07 if B1 is blank. How can I keep A1 blank
    > until
    > I have entered B1 without entering it all in one at a time, the whole of
    > column A will have the same equation with regards to its row. I am just
    > new
    > to Excel and I'm not sure what all options or tools are available to me.
    > Any
    > Help?




  3. #3
    Elkar
    Guest

    RE: Hiding a total until all values are filled

    Try this:

    =IF(B1="","",DATE(YEAR(B1)+8,MONTH(B1),DAY(B1))

    HTH,
    Elkar


    "DCZ" wrote:

    > I want to forcast certain dates based on a persons age. For example, my
    > daughter was born on 11-5-96. I want to forcast her 8th, 12th, and 18th
    > birthday. I am wanting to do this for a hundred or so youth at our church.
    > So, I put in the following =DATE(YEAR(B1)+8,MONTH(B1),DAY(B1)) in A1. The
    > problem I have is I have an incorrect date in A1 until a date is entered.
    > Excel wants to put in 31-Dec-07 if B1 is blank. How can I keep A1 blank until
    > I have entered B1 without entering it all in one at a time, the whole of
    > column A will have the same equation with regards to its row. I am just new
    > to Excel and I'm not sure what all options or tools are available to me. Any
    > Help?


  4. #4
    Sandy Mann
    Guest

    Re: Hiding a total until all values are filled

    If B1 is empty Excel values it as zero. Date zero to Excel is 00 - Jan -
    1900 so eight years on from that is 00 - Jan - 1908. Of course there is no
    day 00 in Jan 1900 so Excel gives you the day before 1/1/1900 which is 31 -
    Dec - 1907

    Now to cure this add a test for an empty cell:

    =IF(B1="","",DATE(YEAR(B1)+8,MONTH(B1),DAY(B1)))

    --
    HTH

    Sandy
    sandymann2@mailinator.com
    Replace@mailinator.com with @tiscali.co.uk


    "DCZ" <DCZ@discussions.microsoft.com> wrote in message
    news:5D501785-8639-4C0D-AF5F-A3086B572536@microsoft.com...
    >I want to forcast certain dates based on a persons age. For example, my
    > daughter was born on 11-5-96. I want to forcast her 8th, 12th, and 18th
    > birthday. I am wanting to do this for a hundred or so youth at our church.
    > So, I put in the following =DATE(YEAR(B1)+8,MONTH(B1),DAY(B1)) in A1. The
    > problem I have is I have an incorrect date in A1 until a date is entered.
    > Excel wants to put in 31-Dec-07 if B1 is blank. How can I keep A1 blank
    > until
    > I have entered B1 without entering it all in one at a time, the whole of
    > column A will have the same equation with regards to its row. I am just
    > new
    > to Excel and I'm not sure what all options or tools are available to me.
    > Any
    > Help?




  5. #5
    DCZ
    Guest

    RE: Hiding a total until all values are filled

    Elkar and Sandy, Dead on! That was exactly what I was after. Thank you so much.
    DCZ

    "Elkar" wrote:

    > Try this:
    >
    > =IF(B1="","",DATE(YEAR(B1)+8,MONTH(B1),DAY(B1))
    >
    > HTH,
    > Elkar
    >
    >
    > "DCZ" wrote:
    >
    > > I want to forcast certain dates based on a persons age. For example, my
    > > daughter was born on 11-5-96. I want to forcast her 8th, 12th, and 18th
    > > birthday. I am wanting to do this for a hundred or so youth at our church.
    > > So, I put in the following =DATE(YEAR(B1)+8,MONTH(B1),DAY(B1)) in A1. The
    > > problem I have is I have an incorrect date in A1 until a date is entered.
    > > Excel wants to put in 31-Dec-07 if B1 is blank. How can I keep A1 blank until
    > > I have entered B1 without entering it all in one at a time, the whole of
    > > column A will have the same equation with regards to its row. I am just new
    > > to Excel and I'm not sure what all options or tools are available to me. Any
    > > Help?


  6. #6
    Don Guillett
    Guest

    Re: Hiding a total until all values are filled

    If you are using this just be sure you don't inadvertently touch the
    spacebar

    --
    Don Guillett
    SalesAid Software
    dguillett1@austin.rr.com
    "DCZ" <DCZ@discussions.microsoft.com> wrote in message
    news:5986A611-413D-4D90-9791-693F4286E194@microsoft.com...
    > Elkar and Sandy, Dead on! That was exactly what I was after. Thank you so
    > much.
    > DCZ
    >
    > "Elkar" wrote:
    >
    >> Try this:
    >>
    >> =IF(B1="","",DATE(YEAR(B1)+8,MONTH(B1),DAY(B1))
    >>
    >> HTH,
    >> Elkar
    >>
    >>
    >> "DCZ" wrote:
    >>
    >> > I want to forcast certain dates based on a persons age. For example, my
    >> > daughter was born on 11-5-96. I want to forcast her 8th, 12th, and 18th
    >> > birthday. I am wanting to do this for a hundred or so youth at our
    >> > church.
    >> > So, I put in the following =DATE(YEAR(B1)+8,MONTH(B1),DAY(B1)) in A1.
    >> > The
    >> > problem I have is I have an incorrect date in A1 until a date is
    >> > entered.
    >> > Excel wants to put in 31-Dec-07 if B1 is blank. How can I keep A1 blank
    >> > until
    >> > I have entered B1 without entering it all in one at a time, the whole
    >> > of
    >> > column A will have the same equation with regards to its row. I am just
    >> > new
    >> > to Excel and I'm not sure what all options or tools are available to
    >> > me. Any
    >> > Help?




+ 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