How To Combine Folders In Outlook – Combine Folders Using Drag And Drop

Organizing your mailbox structure starts with learning how to combine folders in Outlook. If you have multiple folders cluttering your inbox or need to merge old email archives into one location, this guide will show you exactly how to combine folders in Outlook step by step.

Many users end up with too many folders after years of email management. You might have folders named “Old Projects,” “Archive 2023,” and “Backup Emails” that all serve the same purpose. Combining them saves time and reduces confusion.

This article covers both Outlook desktop (Microsoft 365, Outlook 2019, 2016) and Outlook on the web (OWA). We’ll also touch on Outlook for Mac and the new Outlook for Windows.

Why You Should Combine Folders In Outlook

Combining folders helps you declutter your mailbox. It makes finding emails faster because you have fewer places to look. It also simplifies backup and export processes.

When you merge folders, you also reduce the risk of missing important messages. No more checking three different “Invoices” folders to find a single PDF.

Another benefit is performance. Outlook can slow down when it has to index hundreds of folders. Fewer folders means faster search results and quicker loading times.

How To Combine Folders In Outlook (Desktop Version)

The desktop version of Outlook offers the most control. You can move entire folders or individual emails between folders. The process is straightforward but requires caution.

Method 1: Drag And Drop Folders

This is the simplest method. It works for moving one folder inside another folder.

  1. Open Outlook on your computer.
  2. Locate the folder you want to move in the left navigation pane.
  3. Click and hold the folder name.
  4. Drag it over the destination folder (the folder you want to combine into).
  5. Release the mouse button when you see a small plus sign or arrow.
  6. Outlook will move the folder and all its contents into the destination folder.

Be careful with this method. If you drag a folder onto another folder at the same level, it becomes a subfolder. If you want to merge the contents directly, you need to move the emails instead.

Method 2: Move All Emails From One Folder To Another

This method actually combines the email items, not the folders themselves. You end up with one folder containing all messages from both sources.

  1. Click on the source folder (the one you want to empty).
  2. Press Ctrl+A on your keyboard to select all emails in that folder.
  3. Right-click on the selected emails and choose “Move.”
  4. Select “Other Folder” from the menu.
  5. In the dialog box, choose the destination folder.
  6. Click OK. All emails move to the destination folder.
  7. Now you can delete the empty source folder by right-clicking it and selecting “Delete Folder.”

This method gives you a clean result. You have one folder with all the combined emails, and no leftover empty folders.

Method 3: Using The “Move” Button In The Ribbon

If you prefer using the toolbar, this method works well.

  1. Select the source folder.
  2. Press Ctrl+A to select all emails.
  3. Click the “Move” button in the Home tab of the ribbon.
  4. Choose “Other Folder” from the dropdown.
  5. Pick the destination folder and click OK.
  6. Delete the now-empty source folder.

This method is identical to Method 2 but uses the ribbon instead of right-clicking. Choose whichever feels more comfortable.

How To Combine Folders In Outlook On The Web

Outlook on the web (OWA) has limited folder management options. You cannot directly merge folders, but you can move emails between folders.

Step-By-Step For OWA

  1. Log in to Outlook on the web (outlook.office.com).
  2. Click on the source folder in the left pane.
  3. Click the checkbox at the top of the email list to select all messages.
  4. Click the “Move to” button in the toolbar above the email list.
  5. Select the destination folder from the list.
  6. All emails move to the destination folder.
  7. Right-click the now-empty source folder and choose “Delete.”

Note: OWA does not support drag-and-drop for folders. You can only drag individual emails. For bulk moves, use the “Move to” button.

How To Combine Folders In Outlook For Mac

Outlook for Mac works similarly to the Windows version but has some differences.

Drag And Drop On Mac

  1. Open Outlook for Mac.
  2. In the folder list, click and hold the folder you want to move.
  3. Drag it onto the destination folder.
  4. Release when you see the folder highlight.
  5. The folder becomes a subfolder of the destination.

Moving Emails On Mac

  1. Select the source folder.
  2. Press Command+A to select all emails.
  3. Right-click and choose “Move” then “Choose Folder.”
  4. Select the destination folder and click “Move.”
  5. Delete the empty source folder.

Mac users sometimes report issues with folder hierarchy. Always double-check that your emails landed in the correct folder after moving.

How To Combine Folders In The New Outlook For Windows

Microsoft is rolling out a new Outlook for Windows app. It looks similar to the web version but runs natively on your computer.

Steps For New Outlook

  1. Open the new Outlook app.
  2. Find the source folder in the left pane.
  3. Click the folder to select it.
  4. Press Ctrl+A to select all emails.
  5. Click the “Move” button in the toolbar.
  6. Choose the destination folder.
  7. Delete the empty source folder by right-clicking and selecting “Delete.”

The new Outlook does not support folder drag-and-drop for merging. You must move emails manually.

Important Considerations Before Combining Folders

Before you start merging folders, think about these points.

  • Backup first: Export your mailbox or create a backup of your PST file. Mistakes can happen, and you don’t want to lose emails.
  • Check for duplicates: Combining folders can create duplicate emails. You may need to use Outlook’s “Clean Up” feature or a third-party tool to remove duplicates.
  • Subfolder structure: If your folders have subfolders, dragging the parent folder will move everything. Make sure you want to move the entire tree.
  • Search folders: Combining folders might affect any search folders you have set up. They may need to be recreated.
  • Rules and alerts: If you have email rules that move messages to specific folders, update those rules after combining folders.

How To Handle Duplicate Emails After Combining

Duplicate emails are common when you combine folders. Here is how to clean them up.

Using Outlook’s Built-In Clean Up Tool

  1. Go to the folder that now contains combined emails.
  2. Click the “Clean Up” button in the Home tab.
  3. Choose “Clean Up Folder” or “Clean Up Folder & Subfolders.”
  4. Outlook will move duplicate messages to the Deleted Items folder.

This tool is not perfect. It may miss some duplicates or remove messages that are not actually duplicates.

Manual Duplicate Removal

  1. Sort the folder by “From” or “Subject” to group similar emails.
  2. Hold Ctrl and click each duplicate you want to remove.
  3. Press Delete or move them to a temporary folder.
  4. Review before permanently deleting.

Third-Party Tools

Several add-ins can find and remove duplicates more accurately. Tools like “Duplicate Email Remover” or “Outlook Duplicates Remover” offer advanced features. These are useful if you have thousands of emails.

How To Combine Folders In Outlook Using VBA (Advanced)

If you need to combine many folders regularly, you can use a VBA macro. This automates the process.

Sample VBA Code

Sub CombineFolders()
    Dim olApp As Outlook.Application
    Dim olNS As Outlook.NameSpace
    Dim sourceFolder As Outlook.MAPIFolder
    Dim destFolder As Outlook.MAPIFolder
    Dim item As Object
    
    Set olApp = Outlook.Application
    Set olNS = olApp.GetNamespace("MAPI")
    
    ' Change these folder paths to match your setup
    Set sourceFolder = olNS.Folders("yourmailbox").Folders("SourceFolderName")
    Set destFolder = olNS.Folders("yourmailbox").Folders("DestFolderName")
    
    For Each item In sourceFolder.Items
        item.Move destFolder
    Next item
    
    sourceFolder.Delete
End Sub

To use this macro, press Alt+F11 to open the VBA editor. Paste the code into a module. Change the folder names to match yours. Run the macro by pressing F5.

Warning: VBA macros cannot be undone. Test on a small folder first.

Common Mistakes When Combining Folders

Avoid these errors to keep your mailbox intact.

  • Dragging a folder into itself: This creates a circular reference and can cause errors.
  • Forgetting to delete empty folders: Empty folders still count toward your folder limit in some Exchange configurations.
  • Moving system folders: Do not try to move folders like “Inbox,” “Sent Items,” or “Deleted Items.” This can break Outlook.
  • Not checking permissions: If you share folders with others, moving emails might change access permissions.
  • Ignoring folder size limits: Very large folders (over 10GB) can cause performance issues. Consider archiving old emails instead.

How To Combine Folders In Outlook For Different Account Types

The method varies slightly depending on your email account type.

Exchange / Office 365 Accounts

These work best with the methods described above. Folders sync to the server, so changes appear on all devices.

IMAP Accounts

IMAP folders sync with the mail server. When you move emails, they are moved on the server too. Be careful not to exceed storage limits.

POP3 Accounts

POP3 folders are stored locally on your computer. Moving emails between folders does not affect the server. You have more freedom but less backup security.

PST Files (Personal Folders)

If you use a PST file for archiving, you can combine folders within that PST. Open the PST file in Outlook, then use the drag-and-drop or move methods.

How To Combine Folders In Outlook Without Losing Data

Data loss is the biggest fear when reorganizing email. Follow these steps to stay safe.

  1. Export your mailbox to a PST file first. Go to File > Open & Export > Import/Export > Export to a file.
  2. Create a test folder with a few sample emails. Practice combining those before working on real data.
  3. Use the “Move” command instead of “Cut and Paste.” The Move command is safer in Outlook.
  4. After moving emails, check the destination folder to confirm everything arrived.
  5. Keep the backup PST file for at least a month before deleting it.

How To Combine Folders In Outlook On Mobile

Outlook mobile apps (iOS and Android) have limited folder management. You cannot combine folders directly on mobile.

However, you can move individual emails between folders. Open an email, tap the three dots menu, and select “Move to Folder.” This is useful for quick cleanup but not for bulk combining.

For serious folder reorganization, use the desktop or web version.

Frequently Asked Questions

Can I Combine Folders In Outlook Without Moving Emails?

No, combining folders inherently involves moving emails from one folder to another. There is no “merge” button that combines folders while keeping them separate.

How Do I Combine Folders In Outlook 365?

Outlook 365 works the same as the desktop version. Use the drag-and-drop method for folders, or select all emails and move them to the destination folder.

What Happens To Subfolders When I Combine Folders?

If you drag a folder onto another, the entire folder including subfolders moves. If you move only emails, subfolders remain in the original location and must be handled separately.

How To Combine Folders In Outlook Without Duplicates?

After moving emails, use the Clean Up tool or a third-party duplicate remover. You can also sort by subject and manually delete duplicates.

Can I Combine Folders In Outlook On The Web?

Yes, but only by moving emails. Select all emails in the source folder, click “Move to,” and choose the destination folder. Then delete the empty source folder.

Final Tips For Combining Folders

Take your time when combining folders. Rushing leads to mistakes. Start with small folders to build confidence.

Label your folders clearly after combining. Use names like “Archive 2024” instead of generic “Miscellaneous.” This prevents future clutter.

If you have hundreds of folders, consider a complete mailbox reorganization. Delete folders you no longer need. Archive old emails to a PST file.

Remember that Outlook has a folder limit (typically 500 folders in Exchange). Combining folders helps you stay under this limit.

One last tip: after combining folders, run a search for important emails to make sure nothing was lost. Search for keywords, senders, or date ranges.

Now you have all the knowledge needed to combine folders in Outlook. Whether you use the desktop app, web version, or Mac, the process is simple once you understand the steps. Start with one folder pair today and enjoy a cleaner, more organized mailbox.