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
Configuration: Windows XP Internet Explorer 8.0
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...
|
Ok i m impressed
|
Excel uses the ; sign to define where the conditions of the (for example) IF function starts and ends (same is with all other functions) since excel is kind of a simplified programming language u can think of the ; sign as a carriage return, whereas the , sign is used only to combine references or arrays of values (cells). By defining the IF function by commas you basically just told the excel the argument which you want to be tested for true or false, but you did not state what is the true and false condition result, so the probable result will be an error. check your syntax for properly set ; signs.
|
Probably too late for this, but....
|