mole999
Well-known Member
- Joined
- Oct 23, 2004
- Messages
- 10,524
- Office Version
- 2019
- 2016
- 2013
- Platform
- Windows
Time to clean code in one file
I have this for highlighting some cells in a selection
I would like to just select the row referenced as 4 to 35 without a loop and apply the colour and I'm struggling to figure what words to write
I have this for highlighting some cells in a selection
Code:
For i = 4 To 35 'rowNumberValue
Cells(rowNumberValue, i).Interior.ColorIndex = 37
Next I
I would like to just select the row referenced as 4 to 35 without a loop and apply the colour and I'm struggling to figure what words to write