How To Change Uppercase To Lowercase In Outlook – Outlook Case Conversion Steps

Converting uppercase text to lowercase in Outlook is a simple formatting adjustment. If you’ve ever wondered how to change uppercase to lowercase in Outlook, you’re not alone—many users accidentally type in all caps or receive text that needs quick case correction. This guide covers every method, from built-in shortcuts to add-ins, so you can fix case issues in seconds.

Outlook doesn’t have a dedicated “change case” button on its main ribbon, but the tools are there. You just need to know where to look. Below, we break down the steps for desktop, web, and mobile versions.

How To Change Uppercase To Lowercase In Outlook

The fastest way to change case in Outlook on Windows is using the Shift+F3 keyboard shortcut. This works in the email editor, calendar appointments, and even task descriptions. Here’s how it works:

  1. Select the text you want to change.
  2. Press Shift+F3 once to switch to lowercase.
  3. Press it again to cycle through uppercase, lowercase, and sentence case.

That’s it. No menus, no mouse clicks. Just highlight and tap the keys. This shortcut is part of Microsoft Office’s global text tools, so it behaves the same in Word and PowerPoint.

But what if Shift+F3 doesn’t work? Some keyboards require you to hold the Fn key (especially on laptops). Try Fn+Shift+F3 if the first attempt fails. Also, check that your Outlook isn’t in compatibility mode or using a custom keyboard layout.

Using The Ribbon Menu In Outlook Desktop

If shortcuts aren’t your style, you can use the ribbon menu. This method is a bit slower but more visual. Follow these steps:

  1. Highlight the text you want to change.
  2. Go to the Home tab in the ribbon.
  3. Look for the Font group (usually near the top left).
  4. Click the small arrow in the bottom-right corner of the Font group to open the Font dialog box.
  5. In the Font dialog, you’ll see an Effects section. Check the All Caps box to force uppercase, or uncheck it to revert to normal case.

Wait—this doesn’t directly convert to lowercase. The Font dialog only toggles “All Caps” on or off. To actually change case, you need to use the Change Case button, which is hidden by default. Here’s how to add it:

  1. Right-click anywhere on the ribbon and select Customize the Ribbon.
  2. In the right panel, expand the Home tab.
  3. Click New Group and rename it (e.g., “Text Tools”).
  4. In the left panel, choose All Commands from the dropdown.
  5. Scroll down to Change Case and click Add.
  6. Click OK. Now you’ll have a one-click button for case changes.

This custom button gives you the same options as Shift+F3: lowercase, uppercase, sentence case, toggle case, and capitalize each word.

Changing Case In Outlook For Mac

Mac users have a slightly different process. The shortcut is Shift+Command+A to toggle uppercase, but for lowercase conversion, you need the menu:

  1. Select the text in your email.
  2. Go to the Format menu at the top of the screen.
  3. Hover over Font, then select Change Case.
  4. Choose lowercase from the dropdown.

If you don’t see the Change Case option, you might need to enable it. Go to Outlook > Preferences > Ribbon & Toolbar, and add the Change Case command to your toolbar. This is a one-time setup that saves time later.

Using Outlook On The Web (OWA)

Outlook Web App (OWA) is more limited than the desktop version. There’s no built-in case conversion tool. But you can work around this:

  • Copy and paste into Word Online: Open a new Word document in your browser, paste the text, use the Home tab > Change Case (Aa icon), then copy the corrected text back to Outlook.
  • Use a browser extension: Extensions like “Text Case Converter” or “Change Case” for Chrome/Edge add a right-click option to change text case directly in web forms.
  • Type manually: For short text, just retype it in lowercase. It’s faster than workarounds for a few words.

Microsoft hasn’t added a native case tool to OWA yet, but these workarounds are reliable. If you frequently edit case in webmail, consider using the desktop app instead.

Changing Case In Outlook Mobile (IOS & Android)

Mobile apps don’t have keyboard shortcuts. Here’s how to handle uppercase text on your phone:

  1. Select the text by long-pressing and dragging the selection handles.
  2. Tap the B/U/I icon (formatting toolbar) above the keyboard.
  3. Look for a Case option (not always present). If missing, use the copy-paste method:
  4. Copy the text, paste it into a notes app that supports case change (like Google Keep or Apple Notes), change the case there, then copy back.

Some third-party keyboards (like SwiftKey or Gboard) have case-changing features built in. For example, Gboard lets you select text and choose “Change case” from the popup menu. This works in any app, including Outlook mobile.

Using The “Aa” Button In The Ribbon (Desktop Only)

In recent versions of Outlook for Windows (Microsoft 365), there’s a small “Aa” button in the Font group on the Home tab. Clicking it opens a dropdown with case options:

  • Sentence case
  • lowercase
  • UPPERCASE
  • Capitalize Each Word
  • tOGGLE cASE

If you don’t see this button, your Outlook version might be older. Update to the latest Microsoft 365 release. Alternatively, use the Shift+F3 shortcut which works on all versions back to Outlook 2010.

This “Aa” button is the most intuitive method for beginners. It’s visual and doesn’t require memorizing shortcuts. Just highlight and click.

Fixing Accidental Caps Lock Text

Sometimes you type an entire paragraph with Caps Lock on. Instead of retyping, use this trick:

  1. Select the all-caps text.
  2. Press Shift+F3 once to switch to lowercase.
  3. Then press Shift+F3 again to cycle to sentence case (first letter capital, rest lowercase).

This works because Shift+F3 cycles through three states: lowercase, UPPERCASE, and Sentence case. If your text is already uppercase, one press gives you lowercase. Two presses give you sentence case.

For mixed-case text (like “tHIS iS wEiRd”), use the tOGGLE cASE option from the “Aa” button. It reverses the case of each letter.

Using Macros For Bulk Case Changes

If you frequently change case in Outlook, a macro can automate it. This is advanced but very powerful. Here’s a simple VBA macro for lowercase conversion:

  1. Press Alt+F11 to open the VBA editor.
  2. Go to Insert > Module.
  3. Paste this code:
    Sub ConvertToLowercase()
        Dim objItem As Object
        Set objItem = Application.ActiveInspector.CurrentItem
        If TypeOf objItem Is MailItem Then
            Dim objMail As MailItem
            Set objMail = objItem
            objMail.Body = LCase(objMail.Body)
        End If
    End Sub
    
  4. Close the editor and save.
  5. Assign the macro to a button or shortcut in Outlook’s Quick Access Toolbar.

This macro converts the entire email body to lowercase. You can modify it to work on selected text instead by using the Selection object. Macros are saved in your personal workbook, so they persist across sessions.

Note: Macros can be blocked by security settings. Enable them in File > Options > Trust Center > Trust Center Settings > Macro Settings. Choose “Enable all macros” only if you trust the source.

Third-Party Add-Ins For Case Conversion

If built-in tools aren’t enough, consider add-ins from the Microsoft AppSource store:

  • Text Toolkit for Outlook: Adds a “Change Case” button with options for lowercase, uppercase, proper case, and more. Works on selected text or entire emails.
  • Case Changer: A lightweight add-in that sits in the ribbon. Supports bulk conversion for multiple emails at once.
  • Kutools for Outlook: A comprehensive toolset that includes case conversion, text cleaning, and formatting tools. It’s paid but very popular.

These add-ins are especially useful if you manage newsletters or customer emails where case consistency matters. Most offer free trials, so test before buying.

Common Issues And Fixes

Here are problems you might encounter and how to solve them:

  • Shift+F3 doesn’t work: Check if your Fn key is needed. Also, ensure you’re not in a read-only email (like a received message you’re forwarding). The shortcut only works in editable fields.
  • Change Case button is grayed out: You might have selected a non-editable element (like a picture or table). Click inside the text area again.
  • Case changes revert after sending: This happens if the recipient’s email client doesn’t support formatting. Plain text emails strip case changes. Switch to HTML format in Outlook’s settings.
  • Macro doesn’t run: Check your security settings. Also, make sure you saved the macro in the correct module (not in “ThisOutlookSession”).

Most issues stem from version differences. Outlook 2016, 2019, and Microsoft 365 all handle case slightly differently. If you’re on an older version, consider upgrading or using the copy-paste workaround.

Why Case Matters In Emails

Using all uppercase in emails can be seen as shouting. It’s considered rude in professional communication. Converting to lowercase or sentence case makes your message more readable and polite. Here are quick tips:

  • Use sentence case for most business emails (first word capitalized, rest lowercase).
  • Use title case for subject lines (capitalize major words).
  • Avoid all caps except for acronyms (like ASAP or CEO).

If you receive an email in all caps, you can politely ask the sender to use proper case. But for your own emails, always double-check before hitting send. The Shift+F3 shortcut takes one second and saves you from looking unprofessional.

Keyboard Shortcuts Summary

Here’s a quick reference table for all platforms:

  • Windows Desktop: Shift+F3 (cycles through cases)
  • Mac Desktop: Shift+Command+A (toggles uppercase), or Format > Font > Change Case
  • Outlook Web: No native shortcut; use copy-paste to Word Online
  • Mobile: Use notes app or third-party keyboard

Memorize the Windows shortcut—it’s the most useful. For Mac users, the menu method is reliable even if slower.

Frequently Asked Questions

Can I Change Case In Outlook Without Using A Shortcut?

Yes. On Windows, you can add the Change Case button to the ribbon via customization. On Mac, use the Format menu. On web, copy-paste to Word Online. All methods work without keyboard shortcuts.

Does Shift+F3 Work In Outlook For Mac?

No. The Mac shortcut is Shift+Command+A, which only toggles uppercase. For lowercase conversion, you must use the Format menu or add the Change Case command to your toolbar.

How Do I Change Case In An Email I Already Sent?

You cannot edit sent emails. You must recall the message (if using Exchange server) or send a correction email. For future emails, use the shortcuts before sending.

Is There A Way To Auto-convert All Incoming Emails To Lowercase?

Not natively. You can create a rule with a script (VBA) that converts the body to lowercase when an email arrives. This requires coding knowledge and may affect performance.

Why Is My Change Case Button Missing In Outlook?

It’s hidden by default in some versions. Right-click the ribbon, choose Customize the Ribbon, and add the Change Case command from All Commands. It will appear in a new group you create.

Now you have every method to change uppercase to lowercase in Outlook. Start with Shift+F3 for speed, customize your ribbon for convenience, and use macros for bulk work. With these tools, you’ll never send an all-caps email again.