excel - Formula is not working because of '#N/A' -


i writing simple formula

 =if(g295="#n/a","na","somethingelse") 

but it's not printing 'na' when give value "#n/a" if use above formula

 =if(g295="r","na","somethingelse") 

then it's working. can me how reconize value "#n/a"? need write formular if value (#n/a) presents, have other operation, there way this?

the isna function identify #n/a

=if(isna(g295),"na","somethingelse") 

unlike iserror, catches #n/a


Comments

Popular posts from this blog

java - Jasper subreport showing only one entry from the JSON data source when embedded in the Title band -

mapreduce - Resource manager does not transit to active state from standby -

serialization - Convert Any type in scala to Array[Byte] and back -