Some conditional formatting issues

Swedishish

New Member
Joined
Jun 19, 2015
Messages
2
Hi everyone. I'm a mid-level excel user familiar with a handful of advanced functions, running Excel via Office 2010 (v. 14....).

I need some help implementing a condition whereby a row with a cell beginning with a ">" is treated differently than a row containing a cell beginning with "<" or is blank.

Essentially I want to check the relation between values in the same row to the number beginning with either ">" or "<" and then highlight the row if any cells are greater than 125% of the values beginning with "<" or 25% lesser than values beginning with ">." Basically I want to check if measured outcomes are within 25% of stated goals.

Thanks for any help.

.Swedishish
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Best post an example file.

You cant attach files on this forum.
Upload the file to an online storage site then place a link to it on this forum.
 
Upvote 0
You can write formulas in conditional formatting to do that.

Select the entire table. Then go to Home (ribbon) -> Conditional Formatting -> New Rule. Select last option "Use a formula to determine which cells to format" and enter formula.
Assuming your column C has ">25%" and "<25%" text that you want to test. Create two rules, one for each formatting:

=LEFT($C2)=">"

and

=LEFT($C2)="<"


Make sure that column is anchored, i.e. write $C2 not just C2.
 
Upvote 0
Thanks for the help! You guys are super fast. Playing around with the suggestions now with varying degrees of success.
 
Upvote 0

Forum statistics

Threads
1,216,746
Messages
6,132,475
Members
449,729
Latest member
davelevnt

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top