• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

IF Function over sheets

Bumblebee

New Member
So i have a value (it is a percentage value %) that pulls from one sheet to another,
(exact formula below)
but if the value is 0, then it is blank, which is simple enough

=Binder!H26

but i want to just subtlety change it, so that if the value is 0, instead of being blank, it must display N/A
 
Hi ,

Can you not use an IF function , as in :

=IF(Binder!H26 = 0 , NA() , Binder!H26)

or

=IF(Binder!H26 = 0 , "N/A" , Binder!H26)

depending on whether you want the #N/A error value or a text string N/A.

Narayan
 
Back
Top