Bagharmin
Board Regular
- Joined
- Nov 22, 2010
- Messages
- 168
I have a range (say, A10:E100) and I want to fill all the cells on even-numbered rows with a specific color. I know I can loop through each row in the range, check to see if it's an even-numbered row and, if so, fill it with the color I want. What I'd like to know is whether there is a simple way to fill all the cells on even-numbered rows at once (without looping). Something like With ActiveSheet.Range("A10:E100").Rows.Even.
Is this possible or will I be forced to loop through them?
Is this possible or will I be forced to loop through them?