Conditional Format for alternating duplicates

blbat

Active Member
Joined
Mar 24, 2010
Messages
338
Office Version
  1. 2016
  2. 2013
The Following rows are manually highlighted based on text value in Column B. I know how to conditional format for duplicates, but I don't know how to conditional format when there is more than one version of duplicates, in alternating sequence, with variable number of rows. is there a way to do this?


Excel 2010
ABCDEFGHIJK
1Job #SCF or NDC DestinationPiecesA-DateDelivery DateDays LateEarly Delivery? Days Early:CarrierNotesAdditional InfoShipments
2J75008MDU-01NDC ATLANTA GA 3116,9697/20/20187/10/2018 8A&O43301NDC ATLANTA GA 311
3J74827PJC-01NDC DALLAS TX 75125,5237/6/20187/9/20181Not EarlyFuture LogisticsDelay in Transit43287NDC DALLAS TX 751
4J74830PJC-01NDC DALLAS TX 75110,5107/6/20187/9/20181Not EarlyFuture LogisticsDelay in Transit43287NDC DALLAS TX 751
5J74838PJC-01NDC DALLAS TX 7512,0027/6/20187/9/20181Not EarlyFuture LogisticsDelay in Transit43287NDC DALLAS TX 751
6J74839PJC-01NDC DALLAS TX 7512,0027/6/20187/9/20181Not EarlyFuture LogisticsDelay in Transit43287NDC DALLAS TX 751
7J74865PJC-01NDC DALLAS TX 75118,0187/6/20187/9/20181Not EarlyFuture LogisticsDelay in Transit43287NDC DALLAS TX 751
8J74851PJC-01NDC DALLAS TX 7512,0027/6/20187/11/20183Not EarlyFuture LogisticsDelay in Transit43287NDC DALLAS TX 751
9J75313FRA-01NDC DES MOINES IA 5091,5018/24/20188/27/20181Not EarlyFuture LogisticsDelay in Transit43336NDC DES MOINES IA 509
10J75315FRA-01NDC DES MOINES IA 5091,5018/24/20188/27/20181Not EarlyFuture LogisticsDelay in Transit43336NDC DES MOINES IA 509
11J75316FRA-01NDC DES MOINES IA 5091,5008/24/20188/27/20181Not EarlyFuture LogisticsDelay in Transit43336NDC DES MOINES IA 509
12J75320FRA-01NDC DES MOINES IA 5091,5018/24/20188/27/20181Not EarlyFuture LogisticsDelay in Transit43336NDC DES MOINES IA 509
13J75101PJC-01NDC JAXVILLE FL 3206,0077/27/20187/30/20181Not EarlyFuture LogisticsDelay in Transit43308NDC JAXVILLE FL 320
14J75113PJC-01NDC JAXVILLE FL 3202,0027/27/20187/30/20181Not EarlyFuture LogisticsDelay in Transit43308NDC JAXVILLE FL 320
15J74524PJC-01NDC JAXVILLE FL 3202,0026/8/20186/11/20181Not EarlyFuture LogisticsDelay in Transit43259NDC JAXVILLE FL 320
Sheet1
Cell Formulas
RangeFormula
F2=IF($E2>=$D2,(NETWORKDAYS($D2+1,$E2)),"")
F3=IF($E3>=$D3,(NETWORKDAYS($D3+1,$E3)),"")
F4=IF($E4>=$D4,(NETWORKDAYS($D4+1,$E4)),"")
F5=IF($E5>=$D5,(NETWORKDAYS($D5+1,$E5)),"")
F6=IF($E6>=$D6,(NETWORKDAYS($D6+1,$E6)),"")
F7=IF($E7>=$D7,(NETWORKDAYS($D7+1,$E7)),"")
F8=IF($E8>=$D8,(NETWORKDAYS($D8+1,$E8)),"")
F9=IF($E9>=$D9,(NETWORKDAYS($D9+1,$E9)),"")
F10=IF($E10>=$D10,(NETWORKDAYS($D10+1,$E10)),"")
F11=IF($E11>=$D11,(NETWORKDAYS($D11+1,$E11)),"")
F12=IF($E12>=$D12,(NETWORKDAYS($D12+1,$E12)),"")
F13=IF($E13>=$D13,(NETWORKDAYS($D13+1,$E13)),"")
F14=IF($E14>=$D14,(NETWORKDAYS($D14+1,$E14)),"")
F15=IF($E15>=$D15,(NETWORKDAYS($D15+1,$E15)),"")
G2=IF($E2<=$D2,(ABS(NETWORKDAYS($D2,$E2)+1)),"Not Early")
G3=IF($E3<=$D3,(ABS(NETWORKDAYS($D3,$E3)+1)),"Not Early")
G4=IF($E4<=$D4,(ABS(NETWORKDAYS($D4,$E4)+1)),"Not Early")
G5=IF($E5<=$D5,(ABS(NETWORKDAYS($D5,$E5)+1)),"Not Early")
G6=IF($E6<=$D6,(ABS(NETWORKDAYS($D6,$E6)+1)),"Not Early")
G7=IF($E7<=$D7,(ABS(NETWORKDAYS($D7,$E7)+1)),"Not Early")
G8=IF($E8<=$D8,(ABS(NETWORKDAYS($D8,$E8)+1)),"Not Early")
G9=IF($E9<=$D9,(ABS(NETWORKDAYS($D9,$E9)+1)),"Not Early")
G10=IF($E10<=$D10,(ABS(NETWORKDAYS($D10,$E10)+1)),"Not Early")
G11=IF($E11<=$D11,(ABS(NETWORKDAYS($D11,$E11)+1)),"Not Early")
G12=IF($E12<=$D12,(ABS(NETWORKDAYS($D12,$E12)+1)),"Not Early")
G13=IF($E13<=$D13,(ABS(NETWORKDAYS($D13,$E13)+1)),"Not Early")
G14=IF($E14<=$D14,(ABS(NETWORKDAYS($D14,$E14)+1)),"Not Early")
G15=IF($E15<=$D15,(ABS(NETWORKDAYS($D15,$E15)+1)),"Not Early")
K2=D2&B2
K3=D3&B3
K4=D4&B4
K5=D5&B5
K6=D6&B6
K7=D7&B7
K8=D8&B8
K9=D9&B9
K10=D10&B10
K11=D11&B11
K12=D12&B12
K13=D13&B13
K14=D14&B14
K15=D15&B15
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Thanks for the heads up Yongle,
I will follow up in that thread.
(all my searches had "conditional format" in the subject, so I missed this thread entirely!)
 
Upvote 0

Forum statistics

Threads
1,214,946
Messages
6,122,401
Members
449,081
Latest member
JAMES KECULAH

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