Conditions SE nested

0

I would like to create an SE formula that uses the following conditions:

1-Se A for maior ou igual a 1 e menor ou igual a 3 devolve B, caso não 0
2-Se A for maior ou igual a 4 e menor ou igual a 6 devolve B, caso não 0
3-se A for maior ou igual a 7 e menor ou igual a 9 devolve B, caso não 0
4-Se A for maior ou igual a 10 devolve B, caso não 0

I've tried using the following formula that did not work:

= IF (A1

asked by anonymous 22.03.2017 / 11:39

2 answers

0

You need to combine the SE function with the E function.

The SE function has the following format:

SE(condição;resultado se verdadeiro;resultado se falso)

The E function has the format:

E(teste lógico 1;teste lógico 2;...)

In your case, you need something like this:

=SE(E(A1>1;A1<5);B1;0)
    
22.03.2017 / 11:57
0

I believe the desired formulas are these:

=SE(E(A2>=1;A2<=3);Z2;0)   'cenário 1
=SE(E(A2>=4;A2<=6);Z2;0)   'cenário 2
=SE(E(A2>=7;A2<=9);Z2;0)   'cenário 3
=SE(A2>=10;Z2;0)           'cenário 4

The result should be something like this, although you do not know how your worksheet is:

    
22.03.2017 / 17:43