conditional formatting challenge

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Here is my challenge:

I have already used all 3 conditions. I need one condition to execute when
a value = approved OR n/a.

my problem is that i can do one or the other, but no both in the same
condition- how do you do that?

thanks!
 
Hi Brendan,
my problem is that i can do one or the other, but no both in the same
condition- how do you do that?


Formula is: =OR($A$1="approvedd",$A$1="n/a")
 
On the face of it ..
.. I need one condition to execute when
a value = approved OR n/a.

Think using CF formulas in say, Condition 1 such as:

Formula is: =OR($A1="Approved",$A1="N/A")

(if the "n/a" within col A is text)

Or, if col A contains formulas which could evaluate to #N/A

Formula is: =IF(ISNA($A1),1,$A1="Approved")

could accomplish the desired conditional checks

--
 

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