Consulting

Results 1 to 5 of 5

Thread: hide #value!

  1. #1
    VBAX Regular
    Joined
    Jun 2012
    Posts
    19
    Location

    hide #value!

    I want empty cells to be blank instead of showing #value!

    The formula is =VALUE(SUBSTITUTE(BD1,"Shortened Odds","")).

    I have tried modifying =IF(ISERROR(SUM((H10-G10)/G10)),"",SUM((H10-G10)/G10)) but it is not working and help is not helpful

    Any help would be greatly appreicated

    Ta,
    Martin

  2. #2
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    If the formula is

    =VALUE(SUBSTITUTE(BD1,"Shortened Odds",""))

    why on earth would you try

    =IF(ISERROR(SUM((H10-G10)/G10)),"",SUM((H10-G10)/G10))

    No is no correlation that I can see.
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

  3. #3
    VBAX Regular
    Joined
    Jun 2012
    Posts
    19
    Location
    I was trying to use the format, as below :-

    =IF(ISERRORVALUE(SUBSTITUTE(BD1,"Shortened Odds","")),"",VALUE(SUBSTITUTE(BD1,"Shortened Odds","")))

    but it did not work.

    Any ideas?

  4. #4
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    It should be

    =IF(ISERROR(VALUE(SUBSTITUTE(BD1,"Shortened Odds",""))),"",VALUE(SUBSTITUTE(BD1,"Shortened Odds","")))
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

  5. #5
    VBAX Regular
    Joined
    Jun 2012
    Posts
    19
    Location
    Hi,
    Thanks for that - I should have counted the ")"
    Ta,
    Martin

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •