Removing " false" value in "IF"
Solved
Related:
- How to remove false in excel
- How to get rid of false in excel - Best answers
- Remove false in excel - Best answers
- How to change date format in excel - Guide
- How to remove write protection - Guide
- Removing "FALSE" from an IF statement with a VLOOKUP ✓ - Excel Forum
- How to enable vba in excel - Guide
- How to find position in excel ✓ - Office Software Forum
5 replies
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