Macro to set all sheets font colour to black

tonywatsonhelp

Well-known Member
Joined
Feb 24, 2014
Messages
3,194
Office Version
  1. 365
  2. 2019
  3. 2016
Platform
  1. Windows
Hi Everyone,

I need a macro that can turn the font on every sheet Black but not the first row as this is the headers.
Any Ideas?

Thanks

Tony
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
Hi

Please use this code


Code:
Sub Fontcolour()


Dim i As Double
For i = 1 To Worksheets.Count
Worksheets(i).Select
Dim lrow As String
Dim Lcol As String
Range("A1").Select
lrow = Range("A10000").End(xlUp).Row
Lcol = Range("XFD1").End(xlToLeft).Address
Lcol = Left(Lcol, 3)


Range("A2:" & Lcol & lrow).Select
Selection.Font.ThemeColor = xlThemeColorLight1
Range("A1").Select
Next


End Sub
 
Upvote 0
you could also try this

Code:
Sub testit()
Dim ws As Worksheet
For Each ws In ThisWorkbook.Worksheets
    ws.UsedRange.Offset(1).Font.Color = vbBlack
Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,798
Messages
6,121,635
Members
449,043
Latest member
farhansadik

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top