I have a VBA routine that looks at a list of scheduled sporting events and currently divides them up into two relatively equal columns; "like" events (on the same channel) are required to stay in the same column.

Now, I need to take the same data and spread it into three columns instead of two, and am stuck on the logic. The new columns are called "TC1", "TC2", and "TC3".

The present logic is if TC1 >= TC2, then the next event is assigned to TC2. How do I get TC1 = TC2 = TC 3 (approximately)?

Judy