Drop down list automatic color

Serrre

New Member
Joined
Sep 17, 2024
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Hi,

I have made a drop down list with ''Yes'' and ''No'', when all the cells in the T column are on ''Yes'' i would like the selected cell that says ''FALSE'' on ''General tasks to do'' which is on the left side to automatically color itself. (In this case green)

I had already found a formula but this does not seem to work.
1726550357767.png

Thanks for your time
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
I managed to get this CF formula to work across a row, so you would need to alter the range (T?:T?) and the count value (13?)
=COUNTIF(C3:K3,"x")=9

My question marks are because I can't tell what your row numbers are. This suggestion is based on what looks like a static range of 13 values. If the count is dynamic, then a fixed number probably won't work for you. You'll also need to use Yes (or no as the case may be) and not "x" as I did. I didn't test to see if the case of the searched value matters (e.g. Yes vs yes vs YES)
 
Upvote 0
For conditional formatting the cell that currently says FALSE (G11?), try the below, with T5:T17 replaced as needed to match your actual data range
Excel Formula:
=countif(T5:T17,"yes")=counta(T5:T17)
 
Upvote 0

Forum statistics

Threads
1,221,531
Messages
6,160,357
Members
451,642
Latest member
mirofa

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