Conditional Formatting Formula

  • Thread starter Thread starter bdmatlock
  • Start date Start date
B

bdmatlock

What is the formula to apply conditional formatting if the cell value is "V"
or "V.5"? I can only get it to work with a single value argument.
 
Try this formula...

=OR(A1="V",A1="V.5")

where you would replace the A1 reference with the active cell in the range
you are setting the Conditional Format for.

Rick
 
Thank you, Mike, but that didn't work. The formatting works if the value is
"V", but I need it to also format if the value is "V.5"
 
Hi,

The formula I gave you if correctly applied would work if the leftmost cell
was a v or a V irrespective of what else was in the cell.

Select your cell and
Format|Condtitional format|Formula is and paste the formuls in and select a
colour.

Mike
 
That's it! Thanks so much.

Rick Rothstein (MVP - VB) said:
Try this formula...

=OR(A1="V",A1="V.5")

where you would replace the A1 reference with the active cell in the range
you are setting the Conditional Format for.

Rick
 

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

Similar Threads


Back
Top