Conditional formatting based on multiple cells in a row

abdulhaque

Board Regular
Joined
Dec 2, 2015
Messages
63
Hi all,

Just trying to think ahead of how best to tackle an upcoming task. What can I use to highlight differences in groups of cells in a row? In the example below, you can see two tables, table A = columns A-E and table B = columns G-K. Any row between each table, if found in both tables they are not highlighted. If a row is found in table A but not in table B, the row in table A is highlighted in red. Likewise if a row is found in table B but not in table A, the row in table B is highlighted in blue. The cells can contain anything, including numbers, characters, dates etc. Filtering can be applied by any column.

Thanks

[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD]C[/TD]
[TD]D[/TD]
[TD]E[/TD]
[TD]F[/TD]
[TD]G[/TD]
[TD]H[/TD]
[TD]I[/TD]
[TD]J[/TD]
[TD]K[/TD]
[/TR]
[TR]
[TD]1[/TD]
[TD]a[/TD]
[TD]b[/TD]
[TD]1[/TD]
[TD]2[/TD]
[TD]3[/TD]
[TD][/TD]
[TD]y[/TD]
[TD]y[/TD]
[TD]y[/TD]
[TD]y[/TD]
[TD]6[/TD]
[/TR]
[TR]
[TD]2[/TD]
[TD]3[/TD]
[TD]4[/TD]
[TD]h[/TD]
[TD]t[/TD]
[TD]c[/TD]
[TD][/TD]
[TD]3[/TD]
[TD]4[/TD]
[TD]h[/TD]
[TD]t[/TD]
[TD]c[/TD]
[/TR]
[TR]
[TD]3[/TD]
[TD]t[/TD]
[TD]j[/TD]
[TD]d[/TD]
[TD]7[/TD]
[TD]6[/TD]
[TD][/TD]
[TD]h[/TD]
[TD]h[/TD]
[TD]h[/TD]
[TD]h[/TD]
[TD]h[/TD]
[/TR]
[TR]
[TD]4[/TD]
[TD]o[/TD]
[TD]o[/TD]
[TD]o[/TD]
[TD]o[/TD]
[TD]o[/TD]
[TD][/TD]
[TD]a[/TD]
[TD]b[/TD]
[TD]1[/TD]
[TD]2[/TD]
[TD]3[/TD]
[/TR]
[TR]
[TD]5[/TD]
[TD]1[/TD]
[TD]2[/TD]
[TD]3[/TD]
[TD]4[/TD]
[TD]5[/TD]
[TD][/TD]
[TD]5[/TD]
[TD]j[/TD]
[TD]j[/TD]
[TD]j[/TD]
[TD]p[/TD]
[/TR]
[TR]
[TD]6[/TD]
[TD]y[/TD]
[TD]y[/TD]
[TD]y[/TD]
[TD]y[/TD]
[TD]6[/TD]
[TD][/TD]
[TD]f[/TD]
[TD]g[/TD]
[TD]h[/TD]
[TD]i[/TD]
[TD]j[/TD]
[/TR]
[TR]
[TD]7[/TD]
[TD]h[/TD]
[TD]h[/TD]
[TD]h[/TD]
[TD]h[/TD]
[TD]h[/TD]
[TD][/TD]
[TD]4[/TD]
[TD]5[/TD]
[TD][/TD]
[TD]7[/TD]
[TD]8[/TD]
[/TR]
[TR]
[TD]8[/TD]
[TD]d[/TD]
[TD]h[/TD]
[TD]d[/TD]
[TD]2[/TD]
[TD]5[/TD]
[TD][/TD]
[TD]1[/TD]
[TD]2[/TD]
[TD]3[/TD]
[TD]4[/TD]
[TD]5[/TD]
[/TR]
[TR]
[TD]9[/TD]
[TD]f[/TD]
[TD]g[/TD]
[TD]h[/TD]
[TD]i[/TD]
[TD]j[/TD]
[TD][/TD]
[TD]e[/TD]
[TD]y[/TD]
[TD]6[/TD]
[TD]l[/TD]
[TD]o[/TD]
[/TR]
[TR]
[TD]10[/TD]
[TD]4[/TD]
[TD]5[/TD]
[TD][/TD]
[TD]7[/TD]
[TD]8[/TD]
[TD][/TD]
[TD]o[/TD]
[TD]o[/TD]
[TD]o[/TD]
[TD]o[/TD]
[TD]o[/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Hi all,

Just trying to think ahead of how best to tackle an upcoming task. What can I use to highlight differences in groups of cells in a row? In the example below, you can see two tables, table A = columns A-E and table B = columns G-K. Any row between each table, if found in both tables they are not highlighted. If a row is found in table A but not in table B, the row in table A is highlighted in red. Likewise if a row is found in table B but not in table A, the row in table B is highlighted in blue. The cells can contain anything, including numbers, characters, dates etc. Filtering can be applied by any column.

Thanks

Hi!

Try this:

Table A

=ISERROR(MATCH(5,MMULT(--($A1:$E1=$G$1:$K$10),TRANSPOSE(COLUMN(A1:E1)/COLUMN(A1:E1))),0))<strike>
</strike>

Table B

=ISERROR(MATCH(5,MMULT(--($G1:$K1=$A$1:$E$10),TRANSPOSE(COLUMN(G1:K1)/COLUMN(G1:K1))),0))

Markmzz
 
Upvote 0
A small modification.

Table A

=ISERROR(MATCH(COLUMNS($A1:$E1),MMULT(--($A1:$E1=$G$1:$K$10),TRANSPOSE(COLUMN($A1:$E1)/COLUMN($A1:$E1))),0))

Table B

=ISERROR(MATCH(COLUMNS($G1:$K1),MMULT(--($G1:$K1=$A$1:$E$10),TRANSPOSE(COLUMN($G1:$K1)/COLUMN($G1:$K1))),0))

Markmzz
 
Upvote 0
A small modification.

Table A

=ISERROR(MATCH(COLUMNS($A1:$E1),MMULT(--($A1:$E1=$G$1:$K$10),TRANSPOSE(COLUMN($A1:$E1)/COLUMN($A1:$E1))),0))

Table B

=ISERROR(MATCH(COLUMNS($G1:$K1),MMULT(--($G1:$K1=$A$1:$E$10),TRANSPOSE(COLUMN($G1:$K1)/COLUMN($G1:$K1))),0))

Markmzz

Thanks, the blue highlights worked, but the red didn't...

[TABLE="width: 616"]
<tbody>[TR]
[TD="class: xl63, width: 56"]a[/TD]
[TD="class: xl63, width: 56"]b[/TD]
[TD="class: xl63, width: 56"]1[/TD]
[TD="class: xl63, width: 56"]2[/TD]
[TD="class: xl63, width: 56"]3[/TD]
[TD="class: xl63, width: 56"][/TD]
[TD="class: xl63, width: 56"]y[/TD]
[TD="class: xl63, width: 56"]y[/TD]
[TD="class: xl63, width: 56"]y[/TD]
[TD="class: xl63, width: 56"]y[/TD]
[TD="class: xl63, width: 56"]6[/TD]
[/TR]
[TR]
[TD="class: xl63, width: 56"]3[/TD]
[TD="class: xl63, width: 56"]4[/TD]
[TD="class: xl63, width: 56"]h[/TD]
[TD="class: xl63, width: 56"]t[/TD]
[TD="class: xl63, width: 56"]c[/TD]
[TD="class: xl63, width: 56"][/TD]
[TD="class: xl63, width: 56"]3[/TD]
[TD="class: xl63, width: 56"]4[/TD]
[TD="class: xl63, width: 56"]h[/TD]
[TD="class: xl63, width: 56"]t[/TD]
[TD="class: xl63, width: 56"]c[/TD]
[/TR]
[TR]
[TD="class: xl63, width: 56"]t[/TD]
[TD="class: xl63, width: 56"]j[/TD]
[TD="class: xl63, width: 56"]d[/TD]
[TD="class: xl63, width: 56"]7[/TD]
[TD="class: xl63, width: 56"]6[/TD]
[TD="class: xl63, width: 56"][/TD]
[TD="class: xl63, width: 56"]h[/TD]
[TD="class: xl63, width: 56"]h[/TD]
[TD="class: xl63, width: 56"]h[/TD]
[TD="class: xl63, width: 56"]h[/TD]
[TD="class: xl63, width: 56"]h[/TD]
[/TR]
[TR]
[TD="class: xl63, width: 56"]o[/TD]
[TD="class: xl63, width: 56"]o[/TD]
[TD="class: xl63, width: 56"]o[/TD]
[TD="class: xl63, width: 56"]o[/TD]
[TD="class: xl63, width: 56"]o[/TD]
[TD="class: xl63, width: 56"][/TD]
[TD="class: xl63, width: 56"]a[/TD]
[TD="class: xl63, width: 56"]b[/TD]
[TD="class: xl63, width: 56"]1[/TD]
[TD="class: xl63, width: 56"]2[/TD]
[TD="class: xl63, width: 56"]3[/TD]
[/TR]
[TR]
[TD="class: xl63, width: 56"]1[/TD]
[TD="class: xl63, width: 56"]2[/TD]
[TD="class: xl63, width: 56"]3[/TD]
[TD="class: xl63, width: 56"]4[/TD]
[TD="class: xl63, width: 56"]5[/TD]
[TD="class: xl63, width: 56"][/TD]
[TD="class: xl63, width: 56"]5[/TD]
[TD="class: xl63, width: 56"]j[/TD]
[TD="class: xl63, width: 56"]j[/TD]
[TD="class: xl63, width: 56"]j[/TD]
[TD="class: xl63, width: 56"]p[/TD]
[/TR]
[TR]
[TD="class: xl63, width: 56"]y[/TD]
[TD="class: xl63, width: 56"]y[/TD]
[TD="class: xl63, width: 56"]y[/TD]
[TD="class: xl63, width: 56"]y[/TD]
[TD="class: xl63, width: 56"]6[/TD]
[TD="class: xl63, width: 56"][/TD]
[TD="class: xl63, width: 56"]f[/TD]
[TD="class: xl63, width: 56"]g[/TD]
[TD="class: xl63, width: 56"]h[/TD]
[TD="class: xl63, width: 56"]i[/TD]
[TD="class: xl63, width: 56"]j[/TD]
[/TR]
[TR]
[TD="class: xl63, width: 56"]h[/TD]
[TD="class: xl63, width: 56"]h[/TD]
[TD="class: xl63, width: 56"]h[/TD]
[TD="class: xl63, width: 56"]h[/TD]
[TD="class: xl63, width: 56"]h[/TD]
[TD="class: xl63, width: 56"][/TD]
[TD="class: xl63, width: 56"]4[/TD]
[TD="class: xl63, width: 56"]5[/TD]
[TD="class: xl63, width: 56"][/TD]
[TD="class: xl63, width: 56"]7[/TD]
[TD="class: xl63, width: 56"]8[/TD]
[/TR]
[TR]
[TD="class: xl63, width: 56"]d[/TD]
[TD="class: xl63, width: 56"]h[/TD]
[TD="class: xl63, width: 56"]d[/TD]
[TD="class: xl63, width: 56"]2[/TD]
[TD="class: xl63, width: 56"]5[/TD]
[TD="class: xl63, width: 56"][/TD]
[TD="class: xl63, width: 56"]1[/TD]
[TD="class: xl63, width: 56"]2[/TD]
[TD="class: xl63, width: 56"]3[/TD]
[TD="class: xl63, width: 56"]4[/TD]
[TD="class: xl63, width: 56"]5[/TD]
[/TR]
[TR]
[TD="class: xl63, width: 56"]f[/TD]
[TD="class: xl63, width: 56"]g[/TD]
[TD="class: xl63, width: 56"]h[/TD]
[TD="class: xl63, width: 56"]i[/TD]
[TD="class: xl63, width: 56"]j[/TD]
[TD="class: xl63, width: 56"][/TD]
[TD="class: xl63, width: 56"]e[/TD]
[TD="class: xl63, width: 56"]y[/TD]
[TD="class: xl63, width: 56"]6[/TD]
[TD="class: xl63, width: 56"]l[/TD]
[TD="class: xl63, width: 56"]o[/TD]
[/TR]
[TR]
[TD="class: xl63, width: 56"]4[/TD]
[TD="class: xl63, width: 56"]5[/TD]
[TD="class: xl63, width: 56"][/TD]
[TD="class: xl63, width: 56"]7[/TD]
[TD="class: xl63, width: 56"]8[/TD]
[TD="class: xl63, width: 56"][/TD]
[TD="class: xl63, width: 56"]o[/TD]
[TD="class: xl63, width: 56"]o[/TD]
[TD="class: xl63, width: 56"]o[/TD]
[TD="class: xl63, width: 56"]o[/TD]
[TD="class: xl63, width: 56"]o[/TD]
[/TR]
</tbody>[/TABLE]
 
Last edited:
Upvote 0
Thanks, the blue highlights worked, but the red didn't...

Hi!

Here all is ok. Look at this:

Array Formula (use Ctrl+Shift+Enter to enter the formula) in F1 and copy down

=--ISERROR(MATCH(COLUMNS($A1:$E1),MMULT(--($A1:$E1=$G$1:$K$10),TRANSPOSE(COLUMN($A1:$E1)/COLUMN($A1:$E1))),0))

Array Formula (use Ctrl+Shift+Enter to enter the formula) in L1 and copy down

=--ISERROR(MATCH(COLUMNS($G1:$K1),MMULT(--($G1:$K1=$A$1:$E$10),TRANSPOSE(COLUMN($G1:$K1)/COLUMN($G1:$K1))),0))


[TABLE="class: grid, width: 448"]
<tbody>[TR]
[TD][/TD]
[TD="align: center"]A[/TD]
[TD="align: center"]B[/TD]
[TD="align: center"]C[/TD]
[TD="align: center"]D[/TD]
[TD="align: center"]E[/TD]
[TD="align: center"]F[/TD]
[TD="align: center"]G[/TD]
[TD="align: center"]H[/TD]
[TD="align: center"]I[/TD]
[TD="align: center"]J[/TD]
[TD="align: center"]K[/TD]
[TD="align: center"]L[/TD]
[/TR]
[TR]
[TD="align: center"]1[/TD]
[TD="align: center"]a[/TD]
[TD="align: center"]b[/TD]
[TD="align: center"]1[/TD]
[TD="align: center"]2[/TD]
[TD="align: center"]3[/TD]
[TD="align: center"]0[/TD]
[TD="align: center"]y[/TD]
[TD="align: center"]y[/TD]
[TD="align: center"]y[/TD]
[TD="align: center"]y[/TD]
[TD="align: center"]6[/TD]
[TD="align: center"]0[/TD]
[/TR]
[TR]
[TD="align: center"]2[/TD]
[TD="align: center"]3[/TD]
[TD="align: center"]4[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]t[/TD]
[TD="align: center"]c[/TD]
[TD="align: center"]0[/TD]
[TD="align: center"]3[/TD]
[TD="align: center"]4[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]t[/TD]
[TD="align: center"]c[/TD]
[TD="align: center"]0[/TD]
[/TR]
[TR]
[TD="align: center"]3[/TD]
[TD="align: center"]t[/TD]
[TD="align: center"]j[/TD]
[TD="align: center"]d[/TD]
[TD="align: center"]7[/TD]
[TD="align: center"]6[/TD]
[TD="align: center"]1[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]0[/TD]
[/TR]
[TR]
[TD="align: center"]4[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]0[/TD]
[TD="align: center"]a[/TD]
[TD="align: center"]b[/TD]
[TD="align: center"]1[/TD]
[TD="align: center"]2[/TD]
[TD="align: center"]3[/TD]
[TD="align: center"]0[/TD]
[/TR]
[TR]
[TD="align: center"]5[/TD]
[TD="align: center"]1[/TD]
[TD="align: center"]2[/TD]
[TD="align: center"]3[/TD]
[TD="align: center"]4[/TD]
[TD="align: center"]5[/TD]
[TD="align: center"]0[/TD]
[TD="align: center"]5[/TD]
[TD="align: center"]j[/TD]
[TD="align: center"]j[/TD]
[TD="align: center"]j[/TD]
[TD="align: center"]p[/TD]
[TD="align: center"]1[/TD]
[/TR]
[TR]
[TD="align: center"]6[/TD]
[TD="align: center"]y[/TD]
[TD="align: center"]y[/TD]
[TD="align: center"]y[/TD]
[TD="align: center"]y[/TD]
[TD="align: center"]6[/TD]
[TD="align: center"]0[/TD]
[TD="align: center"]f[/TD]
[TD="align: center"]g[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]i[/TD]
[TD="align: center"]j[/TD]
[TD="align: center"]0[/TD]
[/TR]
[TR]
[TD="align: center"]7[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]0[/TD]
[TD="align: center"]4[/TD]
[TD="align: center"]5[/TD]
[TD="align: center"][/TD]
[TD="align: center"]7[/TD]
[TD="align: center"]8[/TD]
[TD="align: center"]0[/TD]
[/TR]
[TR]
[TD="align: center"]8[/TD]
[TD="align: center"]d[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]d[/TD]
[TD="align: center"]2[/TD]
[TD="align: center"]5[/TD]
[TD="align: center"]1[/TD]
[TD="align: center"]1[/TD]
[TD="align: center"]2[/TD]
[TD="align: center"]3[/TD]
[TD="align: center"]4[/TD]
[TD="align: center"]5[/TD]
[TD="align: center"]0[/TD]
[/TR]
[TR]
[TD="align: center"]9[/TD]
[TD="align: center"]f[/TD]
[TD="align: center"]g[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]i[/TD]
[TD="align: center"]j[/TD]
[TD="align: center"]0[/TD]
[TD="align: center"]e[/TD]
[TD="align: center"]y[/TD]
[TD="align: center"]6[/TD]
[TD="align: center"]l[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]1[/TD]
[/TR]
[TR]
[TD="align: center"]10[/TD]
[TD="align: center"]4[/TD]
[TD="align: center"]5[/TD]
[TD="align: center"][/TD]
[TD="align: center"]7[/TD]
[TD="align: center"]8[/TD]
[TD="align: center"]0[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]0[/TD]
[/TR]
[TR]
[TD="align: center"]11[/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[/TR]
[TR]
[TD="align: center"]***[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[/TR]
</tbody>[/TABLE]


Ps: delete all CF before to create the CF red and blue.

Markmzz
 
Last edited:
Upvote 0
Hi!

Here all is ok. Look at this:

Array Formula (use Ctrl+Shift+Enter to enter the formula) in F1 and copy down

=--ISERROR(MATCH(COLUMNS($A1:$E1),MMULT(--($A1:$E1=$G$1:$K$10),TRANSPOSE(COLUMN($A1:$E1)/COLUMN($A1:$E1))),0))

Array Formula (use Ctrl+Shift+Enter to enter the formula) in L1 and copy down

=--ISERROR(MATCH(COLUMNS($G1:$K1),MMULT(--($G1:$K1=$A$1:$E$10),TRANSPOSE(COLUMN($G1:$K1)/COLUMN($G1:$K1))),0))


[TABLE="class: grid, width: 448"]
<tbody>[TR]
[TD][/TD]
[TD="align: center"]A[/TD]
[TD="align: center"]B[/TD]
[TD="align: center"]C[/TD]
[TD="align: center"]D[/TD]
[TD="align: center"]E[/TD]
[TD="align: center"]F[/TD]
[TD="align: center"]G[/TD]
[TD="align: center"]H[/TD]
[TD="align: center"]I[/TD]
[TD="align: center"]J[/TD]
[TD="align: center"]K[/TD]
[TD="align: center"]L[/TD]
[/TR]
[TR]
[TD="align: center"]1[/TD]
[TD="align: center"]a[/TD]
[TD="align: center"]b[/TD]
[TD="align: center"]1[/TD]
[TD="align: center"]2[/TD]
[TD="align: center"]3[/TD]
[TD="align: center"]0[/TD]
[TD="align: center"]y[/TD]
[TD="align: center"]y[/TD]
[TD="align: center"]y[/TD]
[TD="align: center"]y[/TD]
[TD="align: center"]6[/TD]
[TD="align: center"]0[/TD]
[/TR]
[TR]
[TD="align: center"]2[/TD]
[TD="align: center"]3[/TD]
[TD="align: center"]4[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]t[/TD]
[TD="align: center"]c[/TD]
[TD="align: center"]0[/TD]
[TD="align: center"]3[/TD]
[TD="align: center"]4[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]t[/TD]
[TD="align: center"]c[/TD]
[TD="align: center"]0[/TD]
[/TR]
[TR]
[TD="align: center"]3[/TD]
[TD="align: center"]t[/TD]
[TD="align: center"]j[/TD]
[TD="align: center"]d[/TD]
[TD="align: center"]7[/TD]
[TD="align: center"]6[/TD]
[TD="align: center"]1[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]0[/TD]
[/TR]
[TR]
[TD="align: center"]4[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]0[/TD]
[TD="align: center"]a[/TD]
[TD="align: center"]b[/TD]
[TD="align: center"]1[/TD]
[TD="align: center"]2[/TD]
[TD="align: center"]3[/TD]
[TD="align: center"]0[/TD]
[/TR]
[TR]
[TD="align: center"]5[/TD]
[TD="align: center"]1[/TD]
[TD="align: center"]2[/TD]
[TD="align: center"]3[/TD]
[TD="align: center"]4[/TD]
[TD="align: center"]5[/TD]
[TD="align: center"]0[/TD]
[TD="align: center"]5[/TD]
[TD="align: center"]j[/TD]
[TD="align: center"]j[/TD]
[TD="align: center"]j[/TD]
[TD="align: center"]p[/TD]
[TD="align: center"]1[/TD]
[/TR]
[TR]
[TD="align: center"]6[/TD]
[TD="align: center"]y[/TD]
[TD="align: center"]y[/TD]
[TD="align: center"]y[/TD]
[TD="align: center"]y[/TD]
[TD="align: center"]6[/TD]
[TD="align: center"]0[/TD]
[TD="align: center"]f[/TD]
[TD="align: center"]g[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]i[/TD]
[TD="align: center"]j[/TD]
[TD="align: center"]0[/TD]
[/TR]
[TR]
[TD="align: center"]7[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]0[/TD]
[TD="align: center"]4[/TD]
[TD="align: center"]5[/TD]
[TD="align: center"][/TD]
[TD="align: center"]7[/TD]
[TD="align: center"]8[/TD]
[TD="align: center"]0[/TD]
[/TR]
[TR]
[TD="align: center"]8[/TD]
[TD="align: center"]d[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]d[/TD]
[TD="align: center"]2[/TD]
[TD="align: center"]5[/TD]
[TD="align: center"]1[/TD]
[TD="align: center"]1[/TD]
[TD="align: center"]2[/TD]
[TD="align: center"]3[/TD]
[TD="align: center"]4[/TD]
[TD="align: center"]5[/TD]
[TD="align: center"]0[/TD]
[/TR]
[TR]
[TD="align: center"]9[/TD]
[TD="align: center"]f[/TD]
[TD="align: center"]g[/TD]
[TD="align: center"]h[/TD]
[TD="align: center"]i[/TD]
[TD="align: center"]j[/TD]
[TD="align: center"]0[/TD]
[TD="align: center"]e[/TD]
[TD="align: center"]y[/TD]
[TD="align: center"]6[/TD]
[TD="align: center"]l[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]1[/TD]
[/TR]
[TR]
[TD="align: center"]10[/TD]
[TD="align: center"]4[/TD]
[TD="align: center"]5[/TD]
[TD="align: center"][/TD]
[TD="align: center"]7[/TD]
[TD="align: center"]8[/TD]
[TD="align: center"]0[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]o[/TD]
[TD="align: center"]0[/TD]
[/TR]
[TR]
[TD="align: center"]11[/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[TD="align: center"][/TD]
[/TR]
[TR]
[TD="align: center"]***[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[TD="align: center"]****[/TD]
[/TR]
</tbody>[/TABLE]


Ps: delete all CF before to create the CF red and blue.

Markmzz

Thanks a mill! I was applying the formula directly in the CF formula dialog.
 
Upvote 0
Thanks a mill! I was applying the formula directly in the CF formula dialog.

Hi!

It is not necessary to put the formula in the sheet. I put off the conditional formatting too only to demonstrate that it is working.
So, you can put only the formula directly in the CF without any problem.

Markmzz
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,893
Messages
6,175,249
Members
452,623
Latest member
Techenthusiast

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