I'm having a problem with the following array. It will bug out on every line marked with an <<<
May I ask what I am doing wrong? I've tried every trick I know, but I'm obviously no magician...
Code
arrSheets = Array("BR", "mp", "R1", "R3", "R4", "R5", "R6", "R2", "I", "I2", "I3", "I4", "I5", _
"I6", "I7", "I8", "I9", "I10", "I11", "I12")
For i = LBound(arrSheets) To UBound(arrSheets)
Sheets(arrSheets(i)).Interior.ColorIndex = xlNone<<<
Sheets(arrSheets(i)).DisplayHeadings = True<<<
Sheets(arrSheets(i)).Range("A1").Select<<<
Sheets(arrSheets(i)).FormatConditions.Delete<<<
Next i
Thanks in advance!