0
I would like to create a formula SE using 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 didn’t work:
=IF(A1<=3,z1,0) That formula would require me to calculate four times to get the same result. My difficulty is synthesizing the formula to include all ranges from 1-3; 4-6; 7-9; 10-more.
=IF(A1<=3,Z1,0)
– A Novela
Edit the question and add what you’ve tried to do, and explain your difficulty.
– user28595
My difficulty is to compose the formula that gives me the right result. I tried to use the one that’s up there but it’s not working.
– A Novela