ColorIndex Issues

BrianJN1

Well-known Member
Joined
Jun 15, 2017
Messages
611
I had an issue trying to colour format a calendar of events.

I initially started with conditional formatting but it seemed that after a certain point the formats were not being obeyed. I then began to wonder if cells had a numeric limit about the number of times they could be addressed.

An internet search suggested a 3 (or 4) limitation.

There were many places which offered things that I felt to be unwieldly, more to the point, beyond my immediate comprehension.

One place did offer some solace, and there I chose to lift out and modify one line to address my means:
Range("A" & i).Interior.ColorIndex = n

Part of my code, again modified, is:
Code:
…..
For c = 1 To ColNo.
For d = 1 To RowNo
    If Cells(d, c).Value = "Criterion" Or Left(Cells(d, c).Value, 10) = "Criterion" Then
   For a = 0 To 1
    Cells(d, c - a).Interior.ColorIndex = 34
    Next
……..
The last FOR loop ensured that the cell holding the target was coloured but also so was the one to its left as that was a date.

I did at last come up with my desired result.

I’d be interested in how others may have fared in trying to overcome that “3/4 conditional formatting limitation”.
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
3 / 4 limitation basically removed from excel 2007 onwards, as is the way it is developed on the cells
 
Upvote 0

Forum statistics

Threads
1,214,622
Messages
6,120,576
Members
448,972
Latest member
Shantanu2024

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