Format cell alternating automatically by given value

lilloscar

New Member
Joined
Nov 27, 2016
Messages
37
I can do this by giving a formula en every value (image 1), but I need to do only with one formula (image 2) alternating every two given values because there will be more tan 100 files that I need to do the same , may be I need a helper column...

12.11.2016-18.20.png




12.11.2016-18.34.png
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
... may be I need a helper column...
Here is how you can set up a helper column:

Let's assume your data is in range C4:C###, and column Z is your helper column.
Then, enter 1 in cell Z4, put the following formula in cell Z5, and copy it down:

=IF(C5=C4,Z4,-Z4)

Now you can CF cells in column C based on the value of their counterparts in column Z.
 
Upvote 0
Here is how you can set up a helper column:

Let's assume your data is in range C4:C###, and column Z is your helper column.
Then, enter 1 in cell Z4, put the following formula in cell Z5, and copy it down:

=IF(C5=C4,Z4,-Z4)

Now you can CF cells in column C based on the value of their counterparts in column Z.


Thank
you again I will give a try, I just founded this answer, seems to work only with only one color, am trying to find to work with second row color
http://www.mrexcel.com/forum/excel-...hen-first-column-data-change.html#post3456287
 
Upvote 0
Just to complete the post, I solved this way my problem:

Code:
<code>=MOD(SUM(1/COUNTIF($C$4:$C4,$C$4:$C4)),2)=1

=MOD(SUM(1/COUNTIF($C$4:$C4,$C$4:$C4)),2)<1</code>

Thanks @Tetra201
 
Upvote 0

Forum statistics

Threads
1,214,798
Messages
6,121,635
Members
449,043
Latest member
farhansadik

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