Help with look up formula

G

Guest

I am using the following formula: =IF(M5="x",W49*140%,IF(Q5="x",W49*140%,""))
but I need to change it to solve the following problem,

1. How can I use 4 cells J5, G5, M5, Q5, I need to insert a caracter into
any of this cells (at this moment I am using "x") But I really want to be
able to use any keyboard key for the formula to work.
2. using j5="x", w49*0,""
3. using g5="x", w49*0,""
4. using m5="x", w49*140%
5. using Q5="x", w49*140%
6. But the major task that I want accomplish with this formula is to allow
me to enter only one "x" (meaning I can only select ONE between J5, G5, M5,
Q5)
 
R

Roger Govier

Hi Frances

One way
=IF( COUNTA(G5,J5,M5,Q5)>1,"error",
IF(COUNTA(G5,J5)>0,W49*0,
IF(COUNTA(M5,Q5)>0,W49*140%,"")))
 
G

Guest

Thanks Roger, the formula works fine, but the only problem that I have is
that when I choose g5 or j5 I will like the formula not to show 0 (zero) I
will like it to be invisible using ""

Can you help me?
 
R

Roger Govier

Sorry Frances
I misinterpreted your requirement.

use
=IF( COUNTA(G5,J5,M5,Q5)>1,"error",
IF(COUNTA(G5,J5)>0,"",
IF(COUNTA(M5,Q5)>0,W49*140%,"")))
 

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

Top