+ Reply to Thread
Results 1 to 8 of 8

#DIV/0!.......how to get rid of it

  1. #1
    renold1958
    Guest

    #DIV/0!.......how to get rid of it

    Have a spreadsheet....one column keeps coming up with #DIV/0!.........I know
    reasons as of to why, etc etc............is there anyway have the #DIV/0!
    values disappear from a column?



  2. #2
    Mangus Pyke
    Guest

    Re: #DIV/0!.......how to get rid of it

    On Sun, 17 Jul 2005 06:39:01 -0700, "renold1958"
    <[email protected]> wrote:
    >Have a spreadsheet....one column keeps coming up with #DIV/0!.........I know
    >reasons as of to why, etc etc............is there anyway have the #DIV/0!
    >values disappear from a column?


    If column A has a price and column B has a weight, and you're dividing
    these to get the price per pound in column C:

    =IF(B1="0",something,A1/B1)

    Replace something with whatever you want displayed in lieu of the
    division by zero error. So if you want it to be blank, put: ""

    MP-

    --
    "Learning is a behavior that results from consequences."
    B.F. Skinner

  3. #3
    Sandy Mann
    Guest

    Re: #DIV/0!.......how to get rid of it

    if the reason "as of to why, etc etc....." is the fact that - say cell C5 -
    is blank the try:

    =IF(C5=0,"",B5/C5)

    --
    HTH

    Sandy
    [email protected]
    Replace@mailinator with @tiscali.co.uk


    "renold1958" <[email protected]> wrote in message
    news:[email protected]...
    > Have a spreadsheet....one column keeps coming up with #DIV/0!.........I

    know
    > reasons as of to why, etc etc............is there anyway have the #DIV/0!
    > values disappear from a column?
    >
    >




  4. #4
    Sandy Mann
    Guest

    Re: #DIV/0!.......how to get rid of it

    Woops should have been:

    =IF(C5="","",B5/C5) unless C5 could contain a zero when
    =IF(OR(C5="",C5=0),"",B5/C5) or =IF(SUM(C5)=0,"",B5/C5) will be needed.

    --
    HTH

    Sandy
    [email protected]
    Replace@mailinator with @tiscali.co.uk
    "renold1958" <[email protected]> wrote in message
    news:[email protected]...
    > Have a spreadsheet....one column keeps coming up with #DIV/0!.........I

    know
    > reasons as of to why, etc etc............is there anyway have the #DIV/0!
    > values disappear from a column?
    >
    >




  5. #5
    Bond S.C
    Guest

    RE: #DIV/0!.......how to get rid of it

    Hi!
    You can use it

    =IF(ISERROR(A1/B1),0,A1/B1)


    Bond! <Chon, Sung-Chul>


    "renold1958"님이 작성한 내용:

    > Have a spreadsheet....one column keeps coming up with #DIV/0!.........I know
    > reasons as of to why, etc etc............is there anyway have the #DIV/0!
    > values disappear from a column?
    >
    >


  6. #6
    renold1958
    Guest

    Re: #DIV/0!.......how to get rid of it

    Thank you all for your fast replies........much appreciated

    "Mangus Pyke" wrote:

    > On Sun, 17 Jul 2005 06:39:01 -0700, "renold1958"
    > <[email protected]> wrote:
    > >Have a spreadsheet....one column keeps coming up with #DIV/0!.........I know
    > >reasons as of to why, etc etc............is there anyway have the #DIV/0!
    > >values disappear from a column?

    >
    > If column A has a price and column B has a weight, and you're dividing
    > these to get the price per pound in column C:
    >
    > =IF(B1="0",something,A1/B1)
    >
    > Replace something with whatever you want displayed in lieu of the
    > division by zero error. So if you want it to be blank, put: ""
    >
    > MP-
    >
    > --
    > "Learning is a behavior that results from consequences."
    > B.F. Skinner
    >


  7. #7
    Bob Umlas
    Guest

    Re: #DIV/0!.......how to get rid of it

    If there are a lot of formulas here, you can avoid recoding them to the
    suggested formulas by simply selecting them all, use Format/Conditional
    Format, and, using the active cell's address, say C1, change "Cell Value
    is", to "Formula Is", then enter =ISERROR(C1), click Format button, click
    the Font Tab if necessary, and choose a white font (or whichever one matches
    the background), then OK your way out. All errors won't show.

    "renold1958" <[email protected]> wrote in message
    news:[email protected]...
    > Have a spreadsheet....one column keeps coming up with #DIV/0!.........I
    > know
    > reasons as of to why, etc etc............is there anyway have the #DIV/0!
    > values disappear from a column?
    >
    >




  8. #8
    abcd
    Guest

    Re: #DIV/0!.......how to get rid of it

    ... unless you try to print them: often, a "non visible" color may be
    auto-changed by ecxel or the printer sometimes and then printed.

    So, the better solution stay to keep it empty, but if used only on the
    screen or if the pair background-filling and font-color are keeped by
    the printer it may be ok to use your idea.

+ 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