Removing " false" value in "IF"
Solved
Related:
- Testquery_to_remove_false
- Excel if function omit value_if_false returns false - Best answers
- How to remove the false result in excel - Best answers
- Windows defender not removing threat ✓ - Viruses & Security Forum
- Removing hyperlinks in word - Guide
- How to remove call barring in keypad mobile ✓ - Android Forum
- Call barring cancel code - Word Forum
- Removing search baron from mac - Guide
5 responses
bhawkins
Posts
5
Registration date
Saturday 4 April 2009
Status
Member
Last seen
6 April 2009
10
5 Apr 2009 à 07:35
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
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
18 Jul 2013 à 12:01
19 Jun 2017 à 05:09