+ Reply to Thread
Results 1 to 8 of 8

How not to show "#VALUE"

  1. #1
    Serge
    Guest

    How not to show "#VALUE"

    In cell C32:C40 I have the formula below:
    =IF(OR(A32="",B32=""),"",SUMPRODUCT(('Bolt List'!$D$9:$D$188=A32)*('Bolt
    List'!$J$9:$J$188=B32)*('Bolt List'!$E$9:$E$188="SAE Gr.5 Min. Cad.
    Plated"),'Bolt List'!$C$9:$C$188))

    And in cell D32:D40 I have the following formula: =C32+(C32*0.05)

    Data is only in C32:C:33 for the moment & I get answers in cell D32:D33.
    Cell C34:C40 do not have entries yet, so I get "#VALUE" in cells D34:D40
    Is there a simple remedy to not showing this?

    Thank you in advance.

    Serge

  2. #2
    Biff
    Guest

    Re: How not to show "#VALUE"

    Hi!

    Try this in D32 copied down:

    =IF(C32="","",C32*1.05)

    Biff

    "Serge" <[email protected]> wrote in message
    news:[email protected]...
    > In cell C32:C40 I have the formula below:
    > =IF(OR(A32="",B32=""),"",SUMPRODUCT(('Bolt List'!$D$9:$D$188=A32)*('Bolt
    > List'!$J$9:$J$188=B32)*('Bolt List'!$E$9:$E$188="SAE Gr.5 Min. Cad.
    > Plated"),'Bolt List'!$C$9:$C$188))
    >
    > And in cell D32:D40 I have the following formula: =C32+(C32*0.05)
    >
    > Data is only in C32:C:33 for the moment & I get answers in cell D32:D33.
    > Cell C34:C40 do not have entries yet, so I get "#VALUE" in cells D34:D40
    > Is there a simple remedy to not showing this?
    >
    > Thank you in advance.
    >
    > Serge




  3. #3
    Serge
    Guest

    Re: How not to show "#VALUE"

    Hello again Biff,
    It works great.
    Thank you very much.
    Serge
    At your convenience under no oblication. If it's not too much trouble could
    explain (break down) the formula so I can understand it.

    "Biff" wrote:

    > Hi!
    >
    > Try this in D32 copied down:
    >
    > =IF(C32="","",C32*1.05)
    >
    > Biff
    >
    > "Serge" <[email protected]> wrote in message
    > news:[email protected]...
    > > In cell C32:C40 I have the formula below:
    > > =IF(OR(A32="",B32=""),"",SUMPRODUCT(('Bolt List'!$D$9:$D$188=A32)*('Bolt
    > > List'!$J$9:$J$188=B32)*('Bolt List'!$E$9:$E$188="SAE Gr.5 Min. Cad.
    > > Plated"),'Bolt List'!$C$9:$C$188))
    > >
    > > And in cell D32:D40 I have the following formula: =C32+(C32*0.05)
    > >
    > > Data is only in C32:C:33 for the moment & I get answers in cell D32:D33.
    > > Cell C34:C40 do not have entries yet, so I get "#VALUE" in cells D34:D40
    > > Is there a simple remedy to not showing this?
    > >
    > > Thank you in advance.
    > >
    > > Serge

    >
    >
    >


  4. #4

    Re: How not to show "#VALUE"

    "could
    explain (break down) the formula so I can understand it"

    Literally, if C-32 is blank ("") this cell (D-32) is blank, otherwise
    this cell reads C-32 times 1.05.

    ed


  5. #5
    Biff
    Guest

    Re: How not to show "#VALUE"

    Sure........

    The reason you were getting #VALUE! errors is because if your long formula
    returned a blank "",=IF(OR(A32="",B32=""),"",........ then the subsequent
    formula was trying to do math on a TEXT value:

    =C32+(C32*0.05)

    Which would evaluate to:

    =""+(""*0.05)

    A formula blank "" is a zero length TEXT string.

    =C32+(C32*0.05)

    This formula is just adding 5% and another way to express that is:

    C32*1.05

    Fewer steps!

    Biff

    "Serge" <[email protected]> wrote in message
    news:[email protected]...
    > Hello again Biff,
    > It works great.
    > Thank you very much.
    > Serge
    > At your convenience under no oblication. If it's not too much trouble
    > could
    > explain (break down) the formula so I can understand it.
    >
    > "Biff" wrote:
    >
    >> Hi!
    >>
    >> Try this in D32 copied down:
    >>
    >> =IF(C32="","",C32*1.05)
    >>
    >> Biff
    >>
    >> "Serge" <[email protected]> wrote in message
    >> news:[email protected]...
    >> > In cell C32:C40 I have the formula below:
    >> > =IF(OR(A32="",B32=""),"",SUMPRODUCT(('Bolt
    >> > List'!$D$9:$D$188=A32)*('Bolt
    >> > List'!$J$9:$J$188=B32)*('Bolt List'!$E$9:$E$188="SAE Gr.5 Min. Cad.
    >> > Plated"),'Bolt List'!$C$9:$C$188))
    >> >
    >> > And in cell D32:D40 I have the following formula: =C32+(C32*0.05)
    >> >
    >> > Data is only in C32:C:33 for the moment & I get answers in cell
    >> > D32:D33.
    >> > Cell C34:C40 do not have entries yet, so I get "#VALUE" in cells
    >> > D34:D40
    >> > Is there a simple remedy to not showing this?
    >> >
    >> > Thank you in advance.
    >> >
    >> > Serge

    >>
    >>
    >>




  6. #6
    Serge
    Guest

    Re: How not to show "#VALUE"

    thank you so much Biff,
    You're like a brother.
    Serge

    "Biff" wrote:

    > Sure........
    >
    > The reason you were getting #VALUE! errors is because if your long formula
    > returned a blank "",=IF(OR(A32="",B32=""),"",........ then the subsequent
    > formula was trying to do math on a TEXT value:
    >
    > =C32+(C32*0.05)
    >
    > Which would evaluate to:
    >
    > =""+(""*0.05)
    >
    > A formula blank "" is a zero length TEXT string.
    >
    > =C32+(C32*0.05)
    >
    > This formula is just adding 5% and another way to express that is:
    >
    > C32*1.05
    >
    > Fewer steps!
    >
    > Biff
    >
    > "Serge" <[email protected]> wrote in message
    > news:[email protected]...
    > > Hello again Biff,
    > > It works great.
    > > Thank you very much.
    > > Serge
    > > At your convenience under no oblication. If it's not too much trouble
    > > could
    > > explain (break down) the formula so I can understand it.
    > >
    > > "Biff" wrote:
    > >
    > >> Hi!
    > >>
    > >> Try this in D32 copied down:
    > >>
    > >> =IF(C32="","",C32*1.05)
    > >>
    > >> Biff
    > >>
    > >> "Serge" <[email protected]> wrote in message
    > >> news:[email protected]...
    > >> > In cell C32:C40 I have the formula below:
    > >> > =IF(OR(A32="",B32=""),"",SUMPRODUCT(('Bolt
    > >> > List'!$D$9:$D$188=A32)*('Bolt
    > >> > List'!$J$9:$J$188=B32)*('Bolt List'!$E$9:$E$188="SAE Gr.5 Min. Cad.
    > >> > Plated"),'Bolt List'!$C$9:$C$188))
    > >> >
    > >> > And in cell D32:D40 I have the following formula: =C32+(C32*0.05)
    > >> >
    > >> > Data is only in C32:C:33 for the moment & I get answers in cell
    > >> > D32:D33.
    > >> > Cell C34:C40 do not have entries yet, so I get "#VALUE" in cells
    > >> > D34:D40
    > >> > Is there a simple remedy to not showing this?
    > >> >
    > >> > Thank you in advance.
    > >> >
    > >> > Serge
    > >>
    > >>
    > >>

    >
    >
    >


  7. #7
    Serge
    Guest

    Re: How not to show "#VALUE"

    Thank you Ed,
    This makes it a lot easier.
    Serge

    "[email protected]" wrote:

    > "could
    > explain (break down) the formula so I can understand it"
    >
    > Literally, if C-32 is blank ("") this cell (D-32) is blank, otherwise
    > this cell reads C-32 times 1.05.
    >
    > ed
    >
    >


  8. #8
    Biff
    Guest

    Re: How not to show "#VALUE"

    You're welcome!

    Biff

    "Serge" <[email protected]> wrote in message
    news:[email protected]...
    > thank you so much Biff,
    > You're like a brother.
    > Serge
    >
    > "Biff" wrote:
    >
    >> Sure........
    >>
    >> The reason you were getting #VALUE! errors is because if your long
    >> formula
    >> returned a blank "",=IF(OR(A32="",B32=""),"",........ then the subsequent
    >> formula was trying to do math on a TEXT value:
    >>
    >> =C32+(C32*0.05)
    >>
    >> Which would evaluate to:
    >>
    >> =""+(""*0.05)
    >>
    >> A formula blank "" is a zero length TEXT string.
    >>
    >> =C32+(C32*0.05)
    >>
    >> This formula is just adding 5% and another way to express that is:
    >>
    >> C32*1.05
    >>
    >> Fewer steps!
    >>
    >> Biff
    >>
    >> "Serge" <[email protected]> wrote in message
    >> news:[email protected]...
    >> > Hello again Biff,
    >> > It works great.
    >> > Thank you very much.
    >> > Serge
    >> > At your convenience under no oblication. If it's not too much trouble
    >> > could
    >> > explain (break down) the formula so I can understand it.
    >> >
    >> > "Biff" wrote:
    >> >
    >> >> Hi!
    >> >>
    >> >> Try this in D32 copied down:
    >> >>
    >> >> =IF(C32="","",C32*1.05)
    >> >>
    >> >> Biff
    >> >>
    >> >> "Serge" <[email protected]> wrote in message
    >> >> news:[email protected]...
    >> >> > In cell C32:C40 I have the formula below:
    >> >> > =IF(OR(A32="",B32=""),"",SUMPRODUCT(('Bolt
    >> >> > List'!$D$9:$D$188=A32)*('Bolt
    >> >> > List'!$J$9:$J$188=B32)*('Bolt List'!$E$9:$E$188="SAE Gr.5 Min. Cad.
    >> >> > Plated"),'Bolt List'!$C$9:$C$188))
    >> >> >
    >> >> > And in cell D32:D40 I have the following formula: =C32+(C32*0.05)
    >> >> >
    >> >> > Data is only in C32:C:33 for the moment & I get answers in cell
    >> >> > D32:D33.
    >> >> > Cell C34:C40 do not have entries yet, so I get "#VALUE" in cells
    >> >> > D34:D40
    >> >> > Is there a simple remedy to not showing this?
    >> >> >
    >> >> > Thank you in advance.
    >> >> >
    >> >> > Serge
    >> >>
    >> >>
    >> >>

    >>
    >>
    >>




+ 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