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

cron - how to properly run Python script with crontab on every system startup -

elasticsearch - Is the order of operations guaranteed in a bulk update? -

Slow performance first queries on SQL Azure -