View Single Post
 
Old 01-25-2017, 04:04 AM
music_al music_al is offline Windows 10 Office 2013
Novice
 
Join Date: Nov 2015
Posts: 10
music_al is on a distinguished road
Default Conditional Formatting - Duplicates - Apply to specified range

Hi

By using the code generated in a Macro, I've created this function but instead of just applying the formatting to the duplicate cells in a column, I'd like all 20 columns of the table range that corresponds to a duplicate cell to be formatted. The table is ALWAYS 20 columns wide if that helps. This is the code I'm using...

Columns("B:B").Select
Selection.FormatConditions.AddUniqueValues
Selection.FormatConditions(Selection.FormatConditi ons.Count).SetFirstPriority
Selection.FormatConditions(1).DupeUnique = xlDuplicate
With Selection.FormatConditions(1).Interior
.PatternColorIndex = xlAutomatic
.ThemeColor = xlThemeColorAccent2
.TintAndShade = 0.599963377788629
End With
Selection.FormatConditions(1).StopIfTrue = False


Thank you in advance
Reply With Quote