Use the Range and Cells properties of the Worksheet object to return a Range object. : Range Format « Excel « VBA / Excel / Access / Word
- VBA / Excel / Access / Word
- Excel
- Range Format
Use the Range and Cells properties of the Worksheet object to return a Range object.
Sub rangeColor()
Range("A:B").Font.Color = vbRed
End Sub
Related examples in the same category