[Fixed!] Excel Default Font Is Not Changing (4 Quick Solutions)

We’ll use the following simple dataset of 10 employees. The font is the default Calibri, and we want to change it to Arial.

Dataset with default font style which is not changing


Solution 1 – Change the Default Font in Excel Options

Steps:

  • Go to the File tab.
  • Select Options.

A dialog box called Excel Options will appear.

  • In the General tab, from the When creating new workbooks section, click on the drop-down arrow of the Use this as the default font option.
  • Choose your desired font style. Here, we choose the Arial font.
  • Click OK.

Modify Default Font Which is Not Changing, from Excel Options

Excel may display a message box about restarting the application.

  • If it does, click OK.
  • Click on the Close button to close the Excel Options window.

  • If necessary, relaunch the application and the default font style will have changed to Arial.

Change Default Font Style from Excel Options


Solution 2 – Modify the Font via the Font Group

Steps:

  • Select the entire worksheet.
  • In the Home tab, click on the drop-down arrow of the Font command in the Font group.
  • Choose the text font as desired, for example Arial.

Choosing desired font from the Font command

The font style of the data is converted to Arial.

Modify Default Font from Font Group Which is not Changing Previously

Read More: How to Change Font Style in Excel


Solution 3 – Using the Format Cells Dialog Box

Steps:

  • Select the entire worksheet.
  • Right-click and select the Format Cells option from the Context Menu.

Opening Format Cells dialog box to fix Excel default font style is not changing

A small dialog box called Format Cells will appear.

  • In the Font tab, under the Font section, scroll down to find your desired font style and click on the font style, for example Arial.
  • Click OK.

Selecting desire font style to change default font

The font style changes to Arial.

Changing Default Font Style from Format Cells Dialog Box

Read More: How to Change Font in Excel for All Sheets


Solution 4 – Using VBA Code

Steps:

  • If you don’t see the Developer tab on your ribbon, you’ll first have to enable it.
  • Go to the Developer tab.
  • Click on Visual Basic (or press Alt + F11) to open the Visual Basic Editor.

Launching Visual Basic Edition dialog box

A dialog box will appear.

  • From the Insert tab, click Module.

Selecting Module tab

  • Enter the following code in that empty editor box:

Sub Change_Default_Font()
    For Each Worksheet In Worksheets
        Worksheet.Activate
        ActiveSheet.UsedRange.Select
        Selection.Font.Name = "Arial"
    Next
End Sub
  • Press ‘Ctrl+S’ to save the code.
  • Close the Editor window.
  • In the Developer tab, click on the Macros option.

Opening Macros box to Run VBA code

A new dialog box called Macros will appear.

  • Select the Change_Default_Font option.
  • Click on the Run button to run this code.

The default font style will change.

Embedding VBA Code to Solve Excel Default Font Style Is Not Changing

Read More: How to Change Font in Excel to All Caps


Note

Besides the approaches described above, the default font theme can also be changed from the Font drop-down available on the Page Layout tab. Go to the Page Layout tab, click on the drop-down arrow of the Font command, and choose your desired font theme.


Download the Practice Workbook


Related Articles

<< Go Back to Excel Fonts | Excel Cell Format | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!

Tags:

Soumik Dutta
Soumik Dutta

Soumik Dutta, having earned a BSc in Naval Architecture & Engineering from Bangladesh University of Engineering and Technology, plays a key role as an Excel & VBA Content Developer at ExcelDemy. Driven by a profound passion for research and innovation, he actively immerses himself in Excel. In his role, Soumik not only skillfully addresses complex challenges but also demonstrates enthusiasm and expertise in gracefully navigating tough situations, underscoring his unwavering commitment to consistently deliver exceptional, high-quality content that... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo