So I run this macro that sets up conditonal formatting for all 3 of my tabs in certain columns, but the last sheet changes the range from $G:$G,$K:$K to $E:$M, and I have no clue why.
So to fix this I thought this macro would fix it, but instead it is clearing the whole sheet of all conditional formatting.
Sheets("DETAIL").Select
Columns("E:E").Select
Selection.FormatConditions.Delete
Columns("F:F").Select
Selection.FormatConditions.Delete
Columns("H:H").Select
Selection.FormatConditions.Delete
Columns("I:I").Select
Selection.FormatConditions.Delete
Columns("J:J").Select
Selection.FormatConditions.Delete
Columns("L:L").Select
Selection.FormatConditions.Delete
Columns("M:M").Select
Selection.FormatConditions.Delete
Range("B1").Select
Sheets("YTD").Select
I selected invidiual columns since I wasn't getting great results with ranges, but even that is not working. Anyone have a clue on how I can go about to clear just a certain range of condtional formatting? Thanks!
Bookmarks