Removing " false" value in "IF"
Solved
Related:
- Testquery_to_remove_false
- How to get rid of false in excel if statement - Best answers
- How to remove false'' from if statement excel - Best answers
- Windows defender not removing threat ✓ - Viruses & Security Forum
- How to remove call barring in keypad mobile - Word Forum
- Removing redirect virus - Guide
- Reset call barring ✓ - Android Forum
- Call barring pasword forget - Android Forum
5 responses
bhawkins
Posts
5
Registration date
Saturday April 4, 2009
Status
Member
Last seen
April 6, 2009
10
Apr 5, 2009 at 07:35 AM
Apr 5, 2009 at 07:35 AM
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
Jul 18, 2013 at 12:01 PM
Jun 19, 2017 at 05:09 AM