Conditional Formatting Help

simong81

New Member
Joined
Sep 16, 2014
Messages
3
Hi all,

I am pretty new to using excel for anything more than a simple table. I have added some simple VBA to the document to allow a drop down tick option using wingdings 2.

What I now want to do is add some conditional formatting that should columns N to AN have a tick "P" in them and columns J, K, L or M have a tick then it turns one of four colours.

Can anyone please advice how to do this in a simple way?

Thanks

Simon
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
I am currently using four formulas which work on one cell but I cant seem to change or copy to work in all the cells i need.

=AND(J6="P", N6="P")
=AND(K6="P", N6="P")
=AND(L6="P", N6="P")
=AND(M6="P", N6="P")

Each of these have a different colour outcome. Your help would be greatly appreciated.
 
Upvote 0
Try

=AND($J6="P", $N6="P")
=AND($K6="P", $N6="P")
=AND($L6="P", $N6="P")
=AND($M6="P", $N6="P")

Use Format painter (paintbrush icon) to copy to other cells
 
Upvote 0

Forum statistics

Threads
1,214,979
Messages
6,122,552
Members
449,088
Latest member
davidcom

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