+ Reply to Thread
Results 1 to 16 of 16

#div/0! how do i supress?

  1. #1
    KL
    Guest

    Re: #div/0! how do i supress?

    Hi vipa,

    Could you please show the formula that returns the error to be surpressed?

    Thx,
    KL


    "vipa2000" <[email protected]> wrote in message
    news:[email protected]...
    > On one of my worksheets I am creating a standard report that is doing
    > quite a
    > number of calculations. On occassions my data in certain areas will be
    > null.
    > For example cell H34 is returning the error because it has been looking
    > for
    > type 5 priorities and there are none. I am a fussy person and want to
    > suppress the error message as it looks untidy. I have looked at a few
    > threads
    > and cannot quite find one that sorts this out. Thanks up front to all you
    > patient people out there that take your time out to help others.
    > --
    > Regards vipa




  2. #2
    Anne Troy
    Guest

    Re: #div/0! how do i supress?

    Hi, Vipa. It's ever so helpful to provide an edited formula if we have your
    original formula, but here's a shot at it:

    =if(iserror(yourformula),"",yourformula)
    *******************
    ~Anne Troy

    www.OfficeArticles.com


    "vipa2000" <[email protected]> wrote in message
    news:[email protected]...
    > On one of my worksheets I am creating a standard report that is doing

    quite a
    > number of calculations. On occassions my data in certain areas will be

    null.
    > For example cell H34 is returning the error because it has been looking

    for
    > type 5 priorities and there are none. I am a fussy person and want to
    > suppress the error message as it looks untidy. I have looked at a few

    threads
    > and cannot quite find one that sorts this out. Thanks up front to all you
    > patient people out there that take your time out to help others.
    > --
    > Regards vipa




  3. #3
    vipa2000
    Guest

    Re: #div/0! how do i supress?

    Sorry KL and Anne, did not think in this instance it would be as critical.

    cell h34 contains: =$H32/$H31

    h32 =
    =SUMPRODUCT((Sheet1!$C$2:$C$30000=5)*(Sheet1!$D$2:$D$30000="")*(MONTH(Sheet1!$I$2:$I$30000)=$F3)*(YEAR(Sheet1!$I$2:$I$30000)=$H3)*ISNUMBER(SEARCH({"*TECO*","*CLSD*"},Sheet1!$E$2:$E$30000)))

    KL you might recognise it!

    h31 = h9 which is the result of
    =SUMPRODUCT(--(Sheet1!$C$2:$C$30000=5),--(Sheet1!$D$2:$D$30000=""),--(MONTH(Sheet1!$I$2:$I$30000)=F3),--(YEAR(Sheet1!$I$2:$I$30000)=H3))

    --
    Regards vipa


    "KL" wrote:

    > Hi vipa,
    >
    > Could you please show the formula that returns the error to be surpressed?
    >
    > Thx,
    > KL
    >
    >
    > "vipa2000" <[email protected]> wrote in message
    > news:[email protected]...
    > > On one of my worksheets I am creating a standard report that is doing
    > > quite a
    > > number of calculations. On occassions my data in certain areas will be
    > > null.
    > > For example cell H34 is returning the error because it has been looking
    > > for
    > > type 5 priorities and there are none. I am a fussy person and want to
    > > suppress the error message as it looks untidy. I have looked at a few
    > > threads
    > > and cannot quite find one that sorts this out. Thanks up front to all you
    > > patient people out there that take your time out to help others.
    > > --
    > > Regards vipa

    >
    >
    >


  4. #4
    vipa2000
    Guest

    Re: #div/0! how do i supress?

    Hi Anne

    please see respone to KL
    --
    Regards vipa


    "Anne Troy" wrote:

    > Hi, Vipa. It's ever so helpful to provide an edited formula if we have your
    > original formula, but here's a shot at it:
    >
    > =if(iserror(yourformula),"",yourformula)
    > *******************
    > ~Anne Troy
    >
    > www.OfficeArticles.com
    >
    >
    > "vipa2000" <[email protected]> wrote in message
    > news:[email protected]...
    > > On one of my worksheets I am creating a standard report that is doing

    > quite a
    > > number of calculations. On occassions my data in certain areas will be

    > null.
    > > For example cell H34 is returning the error because it has been looking

    > for
    > > type 5 priorities and there are none. I am a fussy person and want to
    > > suppress the error message as it looks untidy. I have looked at a few

    > threads
    > > and cannot quite find one that sorts this out. Thanks up front to all you
    > > patient people out there that take your time out to help others.
    > > --
    > > Regards vipa

    >
    >
    >


  5. #5
    KL
    Guest

    Re: #div/0! how do i supress?

    Hi vipa,

    Generally Anne's solution is the one to use. However, in this case it can be
    slightly shorter:

    =IF($H31,$H32/$H31,0)

    Regards,
    KL


    "vipa2000" <[email protected]> wrote in message
    news:[email protected]...
    > Sorry KL and Anne, did not think in this instance it would be as critical.
    >
    > cell h34 contains: =$H32/$H31
    >
    > h32 =
    > =SUMPRODUCT((Sheet1!$C$2:$C$30000=5)*(Sheet1!$D$2:$D$30000="")*(MONTH(Sheet1!$I$2:$I$30000)=$F3)*(YEAR(Sheet1!$I$2:$I$30000)=$H3)*ISNUMBER(SEARCH({"*TECO*","*CLSD*"},Sheet1!$E$2:$E$30000)))
    >
    > KL you might recognise it!
    >
    > h31 = h9 which is the result of
    > =SUMPRODUCT(--(Sheet1!$C$2:$C$30000=5),--(Sheet1!$D$2:$D$30000=""),--(MONTH(Sheet1!$I$2:$I$30000)=F3),--(YEAR(Sheet1!$I$2:$I$30000)=H3))
    >
    > --
    > Regards vipa
    >
    >
    > "KL" wrote:
    >
    >> Hi vipa,
    >>
    >> Could you please show the formula that returns the error to be
    >> surpressed?
    >>
    >> Thx,
    >> KL
    >>
    >>
    >> "vipa2000" <[email protected]> wrote in message
    >> news:[email protected]...
    >> > On one of my worksheets I am creating a standard report that is doing
    >> > quite a
    >> > number of calculations. On occassions my data in certain areas will be
    >> > null.
    >> > For example cell H34 is returning the error because it has been looking
    >> > for
    >> > type 5 priorities and there are none. I am a fussy person and want to
    >> > suppress the error message as it looks untidy. I have looked at a few
    >> > threads
    >> > and cannot quite find one that sorts this out. Thanks up front to all
    >> > you
    >> > patient people out there that take your time out to help others.
    >> > --
    >> > Regards vipa

    >>
    >>
    >>




  6. #6
    KL
    Guest

    Re: #div/0! how do i supress?

    Hi vipa,

    Could you please show the formula that returns the error to be surpressed?

    Thx,
    KL


    "vipa2000" <[email protected]> wrote in message
    news:[email protected]...
    > On one of my worksheets I am creating a standard report that is doing
    > quite a
    > number of calculations. On occassions my data in certain areas will be
    > null.
    > For example cell H34 is returning the error because it has been looking
    > for
    > type 5 priorities and there are none. I am a fussy person and want to
    > suppress the error message as it looks untidy. I have looked at a few
    > threads
    > and cannot quite find one that sorts this out. Thanks up front to all you
    > patient people out there that take your time out to help others.
    > --
    > Regards vipa




  7. #7
    Anne Troy
    Guest

    Re: #div/0! how do i supress?

    Hi, Vipa. It's ever so helpful to provide an edited formula if we have your
    original formula, but here's a shot at it:

    =if(iserror(yourformula),"",yourformula)
    *******************
    ~Anne Troy

    www.OfficeArticles.com


    "vipa2000" <[email protected]> wrote in message
    news:[email protected]...
    > On one of my worksheets I am creating a standard report that is doing

    quite a
    > number of calculations. On occassions my data in certain areas will be

    null.
    > For example cell H34 is returning the error because it has been looking

    for
    > type 5 priorities and there are none. I am a fussy person and want to
    > suppress the error message as it looks untidy. I have looked at a few

    threads
    > and cannot quite find one that sorts this out. Thanks up front to all you
    > patient people out there that take your time out to help others.
    > --
    > Regards vipa




  8. #8
    vipa2000
    Guest

    Re: #div/0! how do i supress?

    Sorry KL and Anne, did not think in this instance it would be as critical.

    cell h34 contains: =$H32/$H31

    h32 =
    =SUMPRODUCT((Sheet1!$C$2:$C$30000=5)*(Sheet1!$D$2:$D$30000="")*(MONTH(Sheet1!$I$2:$I$30000)=$F3)*(YEAR(Sheet1!$I$2:$I$30000)=$H3)*ISNUMBER(SEARCH({"*TECO*","*CLSD*"},Sheet1!$E$2:$E$30000)))

    KL you might recognise it!

    h31 = h9 which is the result of
    =SUMPRODUCT(--(Sheet1!$C$2:$C$30000=5),--(Sheet1!$D$2:$D$30000=""),--(MONTH(Sheet1!$I$2:$I$30000)=F3),--(YEAR(Sheet1!$I$2:$I$30000)=H3))

    --
    Regards vipa


    "KL" wrote:

    > Hi vipa,
    >
    > Could you please show the formula that returns the error to be surpressed?
    >
    > Thx,
    > KL
    >
    >
    > "vipa2000" <[email protected]> wrote in message
    > news:[email protected]...
    > > On one of my worksheets I am creating a standard report that is doing
    > > quite a
    > > number of calculations. On occassions my data in certain areas will be
    > > null.
    > > For example cell H34 is returning the error because it has been looking
    > > for
    > > type 5 priorities and there are none. I am a fussy person and want to
    > > suppress the error message as it looks untidy. I have looked at a few
    > > threads
    > > and cannot quite find one that sorts this out. Thanks up front to all you
    > > patient people out there that take your time out to help others.
    > > --
    > > Regards vipa

    >
    >
    >


  9. #9
    vipa2000
    Guest

    Re: #div/0! how do i supress?

    Hi Anne

    please see respone to KL
    --
    Regards vipa


    "Anne Troy" wrote:

    > Hi, Vipa. It's ever so helpful to provide an edited formula if we have your
    > original formula, but here's a shot at it:
    >
    > =if(iserror(yourformula),"",yourformula)
    > *******************
    > ~Anne Troy
    >
    > www.OfficeArticles.com
    >
    >
    > "vipa2000" <[email protected]> wrote in message
    > news:[email protected]...
    > > On one of my worksheets I am creating a standard report that is doing

    > quite a
    > > number of calculations. On occassions my data in certain areas will be

    > null.
    > > For example cell H34 is returning the error because it has been looking

    > for
    > > type 5 priorities and there are none. I am a fussy person and want to
    > > suppress the error message as it looks untidy. I have looked at a few

    > threads
    > > and cannot quite find one that sorts this out. Thanks up front to all you
    > > patient people out there that take your time out to help others.
    > > --
    > > Regards vipa

    >
    >
    >


  10. #10
    KL
    Guest

    Re: #div/0! how do i supress?

    Hi vipa,

    Generally Anne's solution is the one to use. However, in this case it can be
    slightly shorter:

    =IF($H31,$H32/$H31,0)

    Regards,
    KL


    "vipa2000" <[email protected]> wrote in message
    news:[email protected]...
    > Sorry KL and Anne, did not think in this instance it would be as critical.
    >
    > cell h34 contains: =$H32/$H31
    >
    > h32 =
    > =SUMPRODUCT((Sheet1!$C$2:$C$30000=5)*(Sheet1!$D$2:$D$30000="")*(MONTH(Sheet1!$I$2:$I$30000)=$F3)*(YEAR(Sheet1!$I$2:$I$30000)=$H3)*ISNUMBER(SEARCH({"*TECO*","*CLSD*"},Sheet1!$E$2:$E$30000)))
    >
    > KL you might recognise it!
    >
    > h31 = h9 which is the result of
    > =SUMPRODUCT(--(Sheet1!$C$2:$C$30000=5),--(Sheet1!$D$2:$D$30000=""),--(MONTH(Sheet1!$I$2:$I$30000)=F3),--(YEAR(Sheet1!$I$2:$I$30000)=H3))
    >
    > --
    > Regards vipa
    >
    >
    > "KL" wrote:
    >
    >> Hi vipa,
    >>
    >> Could you please show the formula that returns the error to be
    >> surpressed?
    >>
    >> Thx,
    >> KL
    >>
    >>
    >> "vipa2000" <[email protected]> wrote in message
    >> news:[email protected]...
    >> > On one of my worksheets I am creating a standard report that is doing
    >> > quite a
    >> > number of calculations. On occassions my data in certain areas will be
    >> > null.
    >> > For example cell H34 is returning the error because it has been looking
    >> > for
    >> > type 5 priorities and there are none. I am a fussy person and want to
    >> > suppress the error message as it looks untidy. I have looked at a few
    >> > threads
    >> > and cannot quite find one that sorts this out. Thanks up front to all
    >> > you
    >> > patient people out there that take your time out to help others.
    >> > --
    >> > Regards vipa

    >>
    >>
    >>




  11. #11
    vipa2000
    Guest

    #div/0! how do i supress?

    On one of my worksheets I am creating a standard report that is doing quite a
    number of calculations. On occassions my data in certain areas will be null.
    For example cell H34 is returning the error because it has been looking for
    type 5 priorities and there are none. I am a fussy person and want to
    suppress the error message as it looks untidy. I have looked at a few threads
    and cannot quite find one that sorts this out. Thanks up front to all you
    patient people out there that take your time out to help others.
    --
    Regards vipa

  12. #12
    KL
    Guest

    Re: #div/0! how do i supress?

    Hi vipa,

    Could you please show the formula that returns the error to be surpressed?

    Thx,
    KL


    "vipa2000" <[email protected]> wrote in message
    news:[email protected]...
    > On one of my worksheets I am creating a standard report that is doing
    > quite a
    > number of calculations. On occassions my data in certain areas will be
    > null.
    > For example cell H34 is returning the error because it has been looking
    > for
    > type 5 priorities and there are none. I am a fussy person and want to
    > suppress the error message as it looks untidy. I have looked at a few
    > threads
    > and cannot quite find one that sorts this out. Thanks up front to all you
    > patient people out there that take your time out to help others.
    > --
    > Regards vipa




  13. #13
    Anne Troy
    Guest

    Re: #div/0! how do i supress?

    Hi, Vipa. It's ever so helpful to provide an edited formula if we have your
    original formula, but here's a shot at it:

    =if(iserror(yourformula),"",yourformula)
    *******************
    ~Anne Troy

    www.OfficeArticles.com


    "vipa2000" <[email protected]> wrote in message
    news:[email protected]...
    > On one of my worksheets I am creating a standard report that is doing

    quite a
    > number of calculations. On occassions my data in certain areas will be

    null.
    > For example cell H34 is returning the error because it has been looking

    for
    > type 5 priorities and there are none. I am a fussy person and want to
    > suppress the error message as it looks untidy. I have looked at a few

    threads
    > and cannot quite find one that sorts this out. Thanks up front to all you
    > patient people out there that take your time out to help others.
    > --
    > Regards vipa




  14. #14
    vipa2000
    Guest

    Re: #div/0! how do i supress?

    Sorry KL and Anne, did not think in this instance it would be as critical.

    cell h34 contains: =$H32/$H31

    h32 =
    =SUMPRODUCT((Sheet1!$C$2:$C$30000=5)*(Sheet1!$D$2:$D$30000="")*(MONTH(Sheet1!$I$2:$I$30000)=$F3)*(YEAR(Sheet1!$I$2:$I$30000)=$H3)*ISNUMBER(SEARCH({"*TECO*","*CLSD*"},Sheet1!$E$2:$E$30000)))

    KL you might recognise it!

    h31 = h9 which is the result of
    =SUMPRODUCT(--(Sheet1!$C$2:$C$30000=5),--(Sheet1!$D$2:$D$30000=""),--(MONTH(Sheet1!$I$2:$I$30000)=F3),--(YEAR(Sheet1!$I$2:$I$30000)=H3))

    --
    Regards vipa


    "KL" wrote:

    > Hi vipa,
    >
    > Could you please show the formula that returns the error to be surpressed?
    >
    > Thx,
    > KL
    >
    >
    > "vipa2000" <[email protected]> wrote in message
    > news:[email protected]...
    > > On one of my worksheets I am creating a standard report that is doing
    > > quite a
    > > number of calculations. On occassions my data in certain areas will be
    > > null.
    > > For example cell H34 is returning the error because it has been looking
    > > for
    > > type 5 priorities and there are none. I am a fussy person and want to
    > > suppress the error message as it looks untidy. I have looked at a few
    > > threads
    > > and cannot quite find one that sorts this out. Thanks up front to all you
    > > patient people out there that take your time out to help others.
    > > --
    > > Regards vipa

    >
    >
    >


  15. #15
    vipa2000
    Guest

    Re: #div/0! how do i supress?

    Hi Anne

    please see respone to KL
    --
    Regards vipa


    "Anne Troy" wrote:

    > Hi, Vipa. It's ever so helpful to provide an edited formula if we have your
    > original formula, but here's a shot at it:
    >
    > =if(iserror(yourformula),"",yourformula)
    > *******************
    > ~Anne Troy
    >
    > www.OfficeArticles.com
    >
    >
    > "vipa2000" <[email protected]> wrote in message
    > news:[email protected]...
    > > On one of my worksheets I am creating a standard report that is doing

    > quite a
    > > number of calculations. On occassions my data in certain areas will be

    > null.
    > > For example cell H34 is returning the error because it has been looking

    > for
    > > type 5 priorities and there are none. I am a fussy person and want to
    > > suppress the error message as it looks untidy. I have looked at a few

    > threads
    > > and cannot quite find one that sorts this out. Thanks up front to all you
    > > patient people out there that take your time out to help others.
    > > --
    > > Regards vipa

    >
    >
    >


  16. #16
    KL
    Guest

    Re: #div/0! how do i supress?

    Hi vipa,

    Generally Anne's solution is the one to use. However, in this case it can be
    slightly shorter:

    =IF($H31,$H32/$H31,0)

    Regards,
    KL


    "vipa2000" <[email protected]> wrote in message
    news:[email protected]...
    > Sorry KL and Anne, did not think in this instance it would be as critical.
    >
    > cell h34 contains: =$H32/$H31
    >
    > h32 =
    > =SUMPRODUCT((Sheet1!$C$2:$C$30000=5)*(Sheet1!$D$2:$D$30000="")*(MONTH(Sheet1!$I$2:$I$30000)=$F3)*(YEAR(Sheet1!$I$2:$I$30000)=$H3)*ISNUMBER(SEARCH({"*TECO*","*CLSD*"},Sheet1!$E$2:$E$30000)))
    >
    > KL you might recognise it!
    >
    > h31 = h9 which is the result of
    > =SUMPRODUCT(--(Sheet1!$C$2:$C$30000=5),--(Sheet1!$D$2:$D$30000=""),--(MONTH(Sheet1!$I$2:$I$30000)=F3),--(YEAR(Sheet1!$I$2:$I$30000)=H3))
    >
    > --
    > Regards vipa
    >
    >
    > "KL" wrote:
    >
    >> Hi vipa,
    >>
    >> Could you please show the formula that returns the error to be
    >> surpressed?
    >>
    >> Thx,
    >> KL
    >>
    >>
    >> "vipa2000" <[email protected]> wrote in message
    >> news:[email protected]...
    >> > On one of my worksheets I am creating a standard report that is doing
    >> > quite a
    >> > number of calculations. On occassions my data in certain areas will be
    >> > null.
    >> > For example cell H34 is returning the error because it has been looking
    >> > for
    >> > type 5 priorities and there are none. I am a fussy person and want to
    >> > suppress the error message as it looks untidy. I have looked at a few
    >> > threads
    >> > and cannot quite find one that sorts this out. Thanks up front to all
    >> > you
    >> > patient people out there that take your time out to help others.
    >> > --
    >> > Regards vipa

    >>
    >>
    >>




+ 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