Share via

Keyboard Shortcut for Capitalizing Text on Mac

Austin Raabe 20 Reputation points
2026-02-08T00:23:28.1933333+00:00

I want to select text in Word and use a keyboard shortcut to capitalize it. Is that possible?

Microsoft 365 and Office | Word | For home | MacOS
{count} votes

Answer accepted by question author
  1. Stefan Blom 335.3K Reputation points MVP Volunteer Moderator
    2026-02-08T00:57:49.2866667+00:00

    Shift L+ F3 did not work

    You may have to use the Fn key (Globe key) User's image with F3: Shift + Fn + F3.

    1 person found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. John Korchok 230.5K Reputation points Volunteer Moderator
    2026-02-08T01:04:10.45+00:00

    This VBA macro will change selected text to Sentence case:

    Sub SentenceCase()
        Selection.Range.Case = wdTitleSentence
    End Sub
    

    You can add the macro to your Normal.dotm template, then assign a keyboard shortcut to it,

    Please post again if you need the steps to add a macro or assign a keyboard shortcut.

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.