Conditional formatting with multiple conditions

Bebbspoke

Board Regular
Joined
Oct 10, 2014
Messages
193
Hi Peoples; -
I'm sure there is a simple way around this - please help me find it!

A block of data cells (B4:BC27) contain either "FALSE" or "TRUE", and the individual column headers (B3:BC3) may be labelled "Buy" or "Sell"...

Req. is to highlight all "Buy & TRUE" in one colour and all "Sell & TRUE" to a different colour...

Your suggestions, thank you.
John
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Select B4:BC27 and add a conditional format based on the following:

Code:
=AND(B4=TRUE,B$3="Buy")

Similarly one for:

Code:
=AND(B4=TRUE,B$3="Sell")

WBD
 
Upvote 0
Hi folks new "conditional formatting" problem; -

col n may contain "r" or "g" as (formulated) text... col AA may contain the digit 1

Requirement is to colour code col AA where and(n3="r",AA3=1) similar (in different colour) where and(n3="g",AA3=1), both thru to nxxx & AAxxx

suggestions please, thanks
 
Upvote 0

Forum statistics

Threads
1,223,893
Messages
6,175,240
Members
452,621
Latest member
Laura_PinksBTHFT

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