Formula and Functions

Copper Contributor

this is just an example below of what i'm looking for.  I would like to be able to highlight every other circuit along with the rows associated with it.  I tried conditional formatting but i don't know the formula to do this.  Is it possible?  The circuit numbers are always changing, and actual file is very large.

 

A00100NorthKhanAssessETH1000-2338827
A00101SouthLopezReplaceETH1000-2338827
A00102CentralCartierDeliverETH1000-2338827
A00103SouthLopezDeliverETH1000-2338827
A00104NorthwestCartierDeliverETH1000-2338827
A00105SouthLopezAssessETH1000-2338827
A00106CentralCartierAssessETH1000-2338827
A00107SouthLopezReplaceETH1000-2338827
A00108NorthwestBurtonDeliverETH1000-2336622
A00109CentralKhanRepairETH1000-2336622
A00110WestBurtonReplaceETH1000-2336622
A00111SouthLopezDeliverETH1000-2336622
A00112WestBurtonAssessTH2000-23334456
A00113CentralMichnerAssessTH2000-23334456
A00114NorthwestKhanReplaceTH2000-23334456
A00115SouthLopezAssessTH2000-23334456
A00116WestBurtonAssessTH2000-23334456
A00117NorthwestBurtonAssessETH1000-9987779
A00118NorthwestCartierReplaceETH1000-9987779
A00119SoutheastKhanReplaceETH1000-9987779
A00120CentralCartierRepairETH1000-9987779
A00121SoutheastKhanReplaceETH1000-9987779
A00122NorthwestKhanAssessETH1000-9987779
A00123SouthLopezReplaceETH1000-9987779
A00124NorthwestMichnerReplaceETH1000-9987779
A00125SouthLopezAssessETH1000-5558378
A00126NorthwestBurtonDeliverETH1000-5558378
A00127SouthLopezDeliverETH1000-5558378
A00128WestKhanAssessETH1000-5558378
A00129NorthwestMichnerDeliverETH1000-5558378
A00130SouthwestCartierReplaceETH1000-5558378
A00131NorthwestKhanAssessETH1000-5558378
A00132NorthwestKhanReplaceETH1000-4433443
A00133WestKhanAssessETH1000-4433443
A00134WestKhanReplaceETH1000-4433443
A00135NorthwestKhanAssessETH1000-4433443
A00136WestKhanReplaceETH1000-4433443
A00137SoutheastCartierAssessETH1000-4433443
A00138NorthwestMichnerDeliverETH1000-4433443
A00139SouthLopezAssessETH1000-4433443
A00140NorthwestMichnerReplaceETH1000-4433443
A00141WestKhanReplaceETH1000-4433443
A00142NorthwestKhanAssessETH1000-4433443
A00143NorthwestBurtonAssessETH1000-4433443
4 Replies

@DeeDeeFP 

Is the attached example similar to what you are looking for?

i'm looking for a formula to highlight all the rows associated with the same circuit #, then not highlight the next group,, then highlight the next. Everyother group of rows associated with the same circuit. Not sure if that's possible?

@DeeDeeFP 

Maybe like in the attached file. The values from column E are copied in column H. Then duplicates are removed with Data -> Remove Duplicates.

 

Every other # is then selected in column I with this formula:

=IF(MOD(ROW(),2)=1,H1,"")

 

This is the rule for conditional formatting which compares the values in column E with the values in column I:

=ISNUMBER(MATCH($E1,$I$1:$I$6,0))

 

@DeeDeeFP 

A different take on what it is that you might be looking for?

image.png