[HELP] Color coding cells if data is missing

vixushr

New Member
Joined
Aug 27, 2011
Messages
6
Helo,

I have one specific situation wich i dont know how to resolve.

In one row i have several cells, lets say row1 cells A,C,F for example, that need to have a data in it.
Problem is that only one of those 3 needs to have data, no more no less... so do the other 3 (B,D,E aswell).

Is there a way to fill with some color all of those 3 cells if theres no data in any of them so that i i can visualy notice that theres data missing and fix it?

Thank you for your help!
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
Welcome to the Board!

Do you need a warning too if there is more than one value entered in the three Cells, or is this unlikely to happen?

Matty
 
Upvote 0
Hi there,

IF it is only a check to see that at least one val is entered, try CF with a formula:

=AND(A1="",C1="",F1="")
 
Upvote 0
Welcome to the Board!

Do you need a warning too if there is more than one value entered in the three Cells, or is this unlikely to happen?

Matty

Helo, thank you for commenting... now that i think of it... that is also a case with some of my cell groups.
 
Upvote 0
Try this Conditional Formatting formula:

Code:
=COUNTA($A1,$C1,$F1)<>1

Then choose a format that you want to show when there is not 1 value in these Cells.

Finally, apply this to the range where you want the formatting applied, so something like:

Code:
=$A$1:$A$10,$C$1:$C$10,$F$1:$F$10

Use the same logic for the Cells B, D and E.

Matty
 
Upvote 0
Try this Conditional Formatting formula:

Code:
=COUNTA($A1,$C1,$F1)<>1
Then choose a format that you want to show when there is not 1 value in these Cells.

Finally, apply this to the range where you want the formatting applied, so something like:

Code:
=$A$1:$A$10,$C$1:$C$10,$F$1:$F$10
Use the same logic for the Cells B, D and E.

Matty


Excelent Matty, works just as it shud!
Thank you, you are lifesaver!
 
Upvote 0
some more help needed!!!

I want to set similar condition:

if cell C is full and cell AC is empty to color code ...

i am trying something like this
=COUNTA($C2)<>0
and that part works
but when i want to add condition for AC cell like this:
=COUNTA($C2)<>0&($AC2)<>1
it yust wont work!

what am i missing here???
 
Upvote 0

Forum statistics

Threads
1,224,587
Messages
6,179,734
Members
452,939
Latest member
WCrawford

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