Modify Font Format (Color, Bold, Underline, Italicize, Size, & Font Type)
/What This VBA Code Does
This will give you an overview of the main ways you can change the font format in your spreadsheets.
Sub Modify_Cell_Font()
'PURPOSE: Show Various Ways to Modify Cell Font
'SOURCE: www.TheSpreadsheetGuru.com
'Change Font Color on RGB Scale
Range("A1").Font.Color = RGB(3, 5, 6)
'Make Font Italicized
Range("A1").Font.Italic = True
'Make Font Bold
Range("A1").Font.Bold = True
'Adjust Font Size
Range("A1").Font.Size = 14
'Underline Text
Range("A1").Font.Underline = True
'Change Font Type
Range("A1").Font.FontStyle = "Arial"
End Sub
How Do I Modify This To Fit My Specific Needs?
Chances are this post did not give you the exact answer you were looking for. We all have different situations and it's impossible to account for every particular need one might have. That's why I want to share with you: My Guide to Getting the Solution to your Problems FAST! In this article, I explain the best strategies I have come up with over the years to getting quick answers to complex problems in Excel, PowerPoint, VBA, you name it!
I highly recommend that you check this guide out before asking me or anyone else in the comments section to solve your specific problem. I can guarantee 9 times out of 10, one of my strategies will get you the answer(s) you are needing faster than it will take me to get back to you with a possible solution. I try my best to help everyone out, but sometimes I don't have time to fit everyone's questions in (there never seem to be quite enough hours in the day!).
I wish you the best of luck and I hope this tutorial gets you heading in the right direction!
Chris "Macro" Newman :)