+ Reply to Thread
Results 1 to 3 of 3

Remove Error

  1. #1
    Forum Contributor
    Join Date
    08-28-2005
    Posts
    132

    Question Remove Error

    I do not want the #Value error to display in any cell of my worksheet. How can this be done?

    PLease provide complete steps to resolving.

    Thx

  2. #2
    Tom Ogilvy
    Guest

    Re: Remove Error

    In the menu

    Edit=>goto=>special
    select
    Formulas and Errors
    hit the delete key.

    in code

    On Error Resume Next
    cells.specialcells(xlformulas,xlErrors).ClearContents
    On Error goto 0

    --
    Regards,
    Tom Ogilvy


    "oberon.black" <[email protected]>
    wrote in message
    news:[email protected]...
    >
    > I do not want the #Value error to display in any cell of my worksheet.
    > How can this be done?
    >
    > PLease provide complete steps to resolving.
    >
    > Thx
    >
    >
    > --
    > oberon.black
    > ------------------------------------------------------------------------
    > oberon.black's Profile:

    http://www.excelforum.com/member.php...o&userid=26732
    > View this thread: http://www.excelforum.com/showthread...hreadid=483146
    >




  3. #3
    Oorang
    Guest

    Re: Remove Error

    Another approach might be to nest your formulas in an iserror function. Say
    your formula is =a1/b1
    You could put
    =If(ISERROR(a1/b1)=true,"",a1/b1)

    This would show the result of a1/b1 only if it was not an error otherwise it
    would show a blank cell.


    "Tom Ogilvy" <[email protected]> wrote in message
    news:[email protected]...
    > In the menu
    >
    > Edit=>goto=>special
    > select
    > Formulas and Errors
    > hit the delete key.
    >
    > in code
    >
    > On Error Resume Next
    > cells.specialcells(xlformulas,xlErrors).ClearContents
    > On Error goto 0
    >
    > --
    > Regards,
    > Tom Ogilvy
    >
    >
    > "oberon.black" <[email protected]>
    > wrote in message
    > news:[email protected]...
    >>
    >> I do not want the #Value error to display in any cell of my worksheet.
    >> How can this be done?
    >>
    >> PLease provide complete steps to resolving.
    >>
    >> Thx
    >>
    >>
    >> --
    >> oberon.black
    >> ------------------------------------------------------------------------
    >> oberon.black's Profile:

    > http://www.excelforum.com/member.php...o&userid=26732
    >> View this thread:
    >> http://www.excelforum.com/showthread...hreadid=483146
    >>

    >
    >




+ 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