+ Reply to Thread
Results 1 to 5 of 5

blank cell until after formula applied

Hybrid View

  1. #1
    Registered User
    Join Date
    01-26-2006
    Posts
    2

    blank cell until after formula applied

    How can I insert a simple sum formula without a "0" appearing in the cell until the formula has been applied. Thanks

  2. #2
    Registered User
    Join Date
    01-08-2006
    Posts
    41
    I'm not sure exactly what your meaning by "until the formula has been applied" but...

    Have you tried the SUMIF function?

    Look it up in Help for examples of its useage.

    Hope this helps...

  3. #3
    CLR
    Guest

    RE: blank cell until after formula applied

    =IF(SUM(A1,A2)=0,"",SUM(A1,A2))

    There are other ways also, depending on exactly what you want.

    Vaya con Dios,
    Chuck, CABGx3



    "junkmandan" wrote:

    >
    > How can I insert a simple sum formula without a "0" appearing in the
    > cell until the formula has been applied. Thanks
    >
    >
    > --
    > junkmandan
    > ------------------------------------------------------------------------
    > junkmandan's Profile: http://www.excelforum.com/member.php...o&userid=30866
    > View this thread: http://www.excelforum.com/showthread...hreadid=505447
    >
    >


  4. #4
    Doug Kanter
    Guest

    Re: blank cell until after formula applied


    "junkmandan" <junkmandan.2299ty_1138302001.4757@excelforum-nospam.com> wrote
    in message news:junkmandan.2299ty_1138302001.4757@excelforum-nospam.com...
    >
    > How can I insert a simple sum formula without a "0" appearing in the
    > cell until the formula has been applied. Thanks


    Here's an example from one of my sheets:
    =IF($A14=0,"",$A14*G14)

    Try constructing something similar, and pay attention to the commas.

    Another option is to use the ISBLANK function, which tests to see if a
    certain cell is blank. Start Excel's help system and search for ISBLANK.



  5. #5
    Doug Kanter
    Guest

    Re: blank cell until after formula applied


    "junkmandan" <junkmandan.2299ty_1138302001.4757@excelforum-nospam.com> wrote
    in message news:junkmandan.2299ty_1138302001.4757@excelforum-nospam.com...
    >
    > How can I insert a simple sum formula without a "0" appearing in the
    > cell until the formula has been applied. Thanks


    By the way, in my example and Chuck's the formulae translate easily into
    words:

    =IF($A14=0,"",$A14*G14)

    If A14 is zero
    THEN put nothing in this cell (quotation marks with nothing between them).
    ELSE (A14 isn't blank)
    Multiply A14 by G14

    You don't have to leave the cell empty - you could also put some sort of
    text between the quotes.



+ 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