How to stop FALSE being displayed

ColdGeorge

Active Member
Joined
Aug 21, 2012
Messages
407
Office Version
  1. 2016
Platform
  1. Windows
Hi all

In cell W103 I have this formula:
SI(Q103<>"",SI(Q103="Lunes",1,SI(Q103="Martes",3,SI(Q103="Miércoles",3,SI(Q103="Jueves",3,SI(Q103="Viernes",3,SI(Q103="Sábado",3,SI(Q103="Domingo","","")))))))) the thing is when Q103 is empty W103 displays FALSE, instead I prefer Q103 to hide FALSE. How can I do that? Thanks in advance.

ColdGeorge
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
You need to add a false condition for the first IF
Excel Formula:
SI(Q103<>"",SI(Q103="Lunes",1,SI(Q103="Martes",3,SI(Q103="Miércoles",3,SI(Q103="Jueves",3,SI(Q103="Viernes",3,SI(Q103="Sábado",3,SI(Q103="Domingo","",""))))))),"")
or you can simplify it like
Excel Formula:
SI(Q103<>"",SI(Q103="Lunes",1,SI(OR(Q103={"Martes","Miércoles","Jueves","Viernes","Sábado"}),3,SI(Q103="Domingo","",""))),"")
 
Upvote 0
Solution
Hi ColdGeorge

You don't have an option for the first SI when value_is_false.

It may be easier to change the first SI to =SI(Q103="","",SI(...etc.
 
Upvote 0
Glad we could help & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,214,834
Messages
6,121,876
Members
449,056
Latest member
ruhulaminappu

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