Color all cells in a row if row is completely filled?

C

carlosven2000

If I have:

A ¦ B ¦ C ¦ D ¦ E ¦ F ¦ G ¦ H ¦ I ¦ J ¦ K ¦L ¦ M

------------------------------------------------------------
row 1
row 2


Once all cells in row 1 (from A1 to M1) have something inside, I want
the row to change color.

I also want this conditional formatting to apply to every subsequent
row in the sheet as more info is added.

Any ideas?

Thanks
 
B

Bob Phillips

Select all the target rows, saying starting at 2 (it reflects in the
formula)

Enter CF

Change Condition 1 to Formula Is

Add a formula of

=COUNTBLANK(2:2)=0

and add a colour from the pattern tab

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

If I have:

A ¦ B ¦ C ¦ D ¦ E ¦ F ¦ G ¦ H ¦ I ¦ J ¦ K ¦ L ¦ M

------------------------------------------------------------
row 1
row 2


Once all cells in row 1 (from A1 to M1) have something inside, I want
the row to change color.

I also want this conditional formatting to apply to every subsequent
row in the sheet as more info is added.

Any ideas?

Thanks
 
N

Norman Jones

Hi Carlosven,

Select the range A1:M100 and use the CF formula:

=COUNTA($A1:$M1)=13

Adjust the range as required.


---
Regards,
Norman



If I have:

A ¦ B ¦ C ¦ D ¦ E ¦ F ¦ G ¦ H ¦ I ¦ J ¦ K ¦ L ¦ M

------------------------------------------------------------
row 1
row 2


Once all cells in row 1 (from A1 to M1) have something inside, I want
the row to change color.

I also want this conditional formatting to apply to every subsequent
row in the sheet as more info is added.

Any ideas?

Thanks
 
D

Duncan

Do you have headings only from A to M?

like
Head1 Head2 Head3 etc up to M only then blank
row1
row2
etc

Duncan
 
A

Ardus Petus

Select the desired range (ie A1:M999)
Format>Conditional Format> Formula is
=AND($a1<>"",$b1<>"",$c1<>"",$c1<>"",$D1<>"",$e1<>"",$f1<>"",$g1<>"",$h1<>"",$i1<>"",$j1<>"",$k1<>"",$l1<>"",$m1<>"")

HTH
--
AP

<[email protected]> a écrit dans le message de (e-mail address removed)...
If I have:

A ¦ B ¦ C ¦ D ¦ E ¦ F ¦ G ¦ H ¦ I ¦ J ¦ K ¦ L ¦ M

------------------------------------------------------------
row 1
row 2


Once all cells in row 1 (from A1 to M1) have something inside, I want
the row to change color.

I also want this conditional formatting to apply to every subsequent
row in the sheet as more info is added.

Any ideas?

Thanks
 
A

Ardus Petus

Bob's and Norman's solution are much smarter than mine!
Don't they work?

Cheers,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top