Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6028967
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T04:49:02+00:00 2026-05-23T04:49:02+00:00

Is there a simple way to reduce the Font Size in Word / Excel

  • 0

Is there a simple way to reduce the Font Size in Word / Excel etc by 1 step in VBA?

So, say if my Font size was 48 could I reduce it to 36, easily, as per the Font drop down in the standard Word 2007 Font group, rather than reducing the font size by 12 – I will not know what the next font size down is…

So rather than setting Font Size explicitly by float :

MyText.Font.Size = 36;

could I do something like :

MyText.Font.Size -= Reduce by 1 step;....  forgive the pseudo code!
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T04:49:03+00:00Added an answer on May 23, 2026 at 4:49 am

    For Excel, you can check the Font Size combobox on the Formatting toolbar. That’s 2003 stuff and I think it will still work in 2007 and beyond, but I don’t have it available to test.

    Sub FontShrink(rng As Range)
    
        Dim i As Long
        Dim ctl As CommandBarComboBox
    
        Set ctl = Application.CommandBars("Formatting").Controls("Font Size:")
    
        If rng.Font.Size > CDbl(ctl.List(ctl.ListCount)) Then
            'if it's bigger than the biggest, make it the biggest
            rng.Font.Size = ctl.List(ctl.ListCount)
        Else
            For i = ctl.ListCount To 2 Step -1
                If rng.Font.Size > CDbl(ctl.List(i)) Then
                    rng.Font.Size = CDbl(ctl.List(i))
                    Exit For
                ElseIf rng.Font.Size = CDbl(ctl.List(i)) Then
                    rng.Font.Size = CDbl(ctl.List(i - 1))
                    Exit For
                End If
            Next i
        End If
    End Sub
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a simple way to see assigned shortcuts with given prefix? Something similar
Is there a simple way to have isometric projection? I mean the true isometric
Is there a simple way to work with C++ objects directly from C? I
Is there a simple way to convert MP3 to WAV in vb2005? what i
Is there a simple way or method to convert a Stream into a byte[]
Is there a simple way of redirecting serial port output to a file, that
Is there a simple way of rendering to a BufferedImage in Java3D? I know
Is there any (simple) way to get some control of the order in which
Is there some simple way to send out a ping-style message to a remote
Is there a simple way, using C#, to open an arbitrary URL, read in

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.