Software glitches with IF/AND formula?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm using the "IF/AND formula in the following syntax:

Cell U12 reads:
"=IF(AND(U9-"-",U15="-"),"-",DATA!R2)"

So basically if the cell above and below U12 have a "-" in them, U12 also
will display "-". If U9 or U15 has any other data than "-", then U12 will
display the value from worksheet DATA, cell R2.

I have this same formula in cells M12 and AC12, referencing the
corresponding cells above and below, referencing the same DATA worksheet
cell R2. They work just fine all the time.

Cell U12 will sometime (repeatable, on same selection) show the value of
DATA!R2 even though the cells above and below are showing "-" and should
return a "-" as well.

I can find no error in my tables, as the arguments for U12 are being
satisfied, yet the cell references DATA!R2 when it shouldn't.

Any insight?

Thank you.
Raymond
 
Did you intend =IF(AND(U9="-",U15="-"),"-",DATA!R2) rather than
=IF(AND(U9-"-",U15="-"),"-",DATA!R2) ?
Equals after U9, rather than minus?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top