si

Osasa

New Member
Joined
Jul 28, 2002
Messages
4
Como puedo hacer una función condicional con Si y poder establezer una condición entre dos parámetros???

Ej.: =SI(Hoja2!C2<=4;1;SI(Hoja2!C2>4 y <10;2;))

No se como hacer para que me deje establezer un valor entre 2 valores, en este caso "4", y "10", y que me devuelva el valor "2".
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
La función Y() es la apropiada para esto, así

SI(Y(Hoja2!C2>4;Hoja2!C2<10);2;"Otra cosa")

O, con operadores booleanos

SI((Hoja2!C2>4)*(Hoja2!C2<10);2;"otra cosa")
 
Upvote 0

Forum statistics

Threads
1,217,371
Messages
6,136,169
Members
449,996
Latest member
duraichandra

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top