Change "FALSE" to "NO DATA"

  • Thread starter Thread starter AAA1986
  • Start date Start date
A

AAA1986

Right now I have the following function in a cell column:

=IF(P18="PMR",E$26)

But when the referenced cell does not equal "PMR" it turns up as "FALSE".
Can I change this so it turns up as "NO DATA"?

Thanks in advance.
 
The below will do what you're looking for. Rgs, Rob

=IF(P18="PMR",E$26,"No Data")
 
Right now I have the following function in a cell column:

=IF(P18="PMR",E$26)

But when the referenced cell does not equal "PMR" it turns up as "FALSE".
Can I change this so it turns up as "NO DATA"?

Thanks in advance.

=IF(P18="PMR",E$26,"NO DATA")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top