Microsoft 365 and Office | Word | For home | MacOS
A family of Microsoft word processing software products for creating web, email, and print documents.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I want to select text in Word and use a keyboard shortcut to capitalize it. Is that possible?
A family of Microsoft word processing software products for creating web, email, and print documents.
Shift L+ F3 did not work
You may have to use the Fn key (Globe key) with F3: Shift + Fn + F3.
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.