Removing " false" value in "IF"

Solved
JIN - 5 Apr 2009 à 07:04
 share - 19 Jun 2017 à 05:09
Hello,

I would like to know how to remove the "False" Value when if function is nested.

Here is an Example

=IF(C11="Evening",200,IF(C11="Gazetted",1000,IF(C11="Night",200)))

Now When I select the value link to this Function I get the desired result as I wanted , but now I dont want the

False Value to be shown d if the given criteria in the cell is not Met

I tried this also

=IFERROR(IF(C9="Evening",200,IF(C9="Gazetted",1000,IF(C9="Night",200))),"")

But still I am getting the same False Value in default

Expert advice is much appreciated on this

Thank you

Waiting
System Configuration: Windows XP
Internet Explorer 8.0
Related:

5 responses

bhawkins Posts 5 Registration date Saturday 4 April 2009 Status Member Last seen 6 April 2009 10
5 Apr 2009 à 07:35
Okay, well excep that u have to have semicolons(;) instead of commas (,) in the function it worked pretty fine for me with some corrections. Like this...

this is what u have
=IF(C11="Evening",200,IF(C11="Gazetted",1000,IF(C11="Night",200)))

where it should be
=IF(C11="Evening";200;IF(C11="Gazetted";1000;IF(C11="Night";200;)))

notice the semicolon on the end, if voided u will have an error because u dont have false state
this function will result with a ZERO (0) if false
you can also do this
=IF(C11="Evening";200;IF(C11="Gazetted";1000;IF(C11="Night";200;"")))
this will result with a blank cell if false

i hope it helped
Thank you!
Thanks - just what I was looking for.