+ Reply to Thread
Results 1 to 3 of 3

Thread: hide #VALUE!

  1. #1
    Jim
    Guest

    hide #VALUE!

    I am using the following formula:

    =IF(I71=0,"0%",I71/I74)

    I71 has this formula:
    =IF(J67=0,"",J67)

    When no data shows in I71 I am receiving #VALUE! in the cell that should
    return 0%, how can I fix this error?

    Thanks

  2. #2
    ChrisJ
    Guest

    RE: hide #VALUE!

    Your problem starts with the fact that you are forcing a zero length string
    into I71 - this is not a numeric value. If you need to leave that formula
    unchanged, I would suggest you use the following formula:
    "=IF(ISNUMBER(I71),I71/I74,"0%")"

    Chris
    Omaha

    "Jim" wrote:

    > I am using the following formula:
    >
    > =IF(I71=0,"0%",I71/I74)
    >
    > I71 has this formula:
    > =IF(J67=0,"",J67)
    >
    > When no data shows in I71 I am receiving #VALUE! in the cell that should
    > return 0%, how can I fix this error?
    >
    > Thanks


  3. #3
    Registered User
    Join Date
    10-16-2004
    Posts
    21
    Hi
    I think the first formula should read

    =IF(I71="","0%",I71/I74)

+ 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.2.0