Inside The Web
    Facebook Twitter Instagram
    Inside The Web
    • Office
      • Excel
      • Ms Word
      • OneDrive
      • Google Docs
      • Google Sheets
      • Google Drive
    • Email
      • Gmail
      • Outlook
      • Emal Etiquette
    • Office Etiquette
    • Productivity
    Inside The Web
    Home»Email»Outlook»How to Reset Outlook View

    How to Reset Outlook View

    Jabin ManandharBy Jabin ManandharJune 16, 2023 Outlook 3 Mins Read

    Whether the Outlook view suddenly changed on its own or you accidentally made some inappropriate changes in one of the view settings, you are probably seeing an unfamiliar layout right now.

    For instance, the messages aren’t displayed the way you like to view them.

    Although you can try to undo each view setting manually, it might not be as simple, especially if you made multiple changes.

    In such cases, it’s better to reset the view to the original/default settings. After that, you can selectively make preferred changes to the view settings.

    Using the View Menu

    1. Open the Outlook app.
    2. Select the View menu at the top.
    3. Click Reset View. Look for it inside the Current View section. Or, just use the keyboard shortcut Alt + V + X.
      Click-Reset-View-Outlook-menu
    4. Alternatively, click View Settings. On the next prompt, click Reset Current View.
      Reset-current-view-on-Outlook
    Note: The Reset View button appears greyed out whenever you switch to Single or Preview mode. In such cases, select View > Change View > Compact.

    Using the Run command

    1. Press Windows + R key to open the Run window.
    2. Then, type outlook /cleanviews and press enter.
      Outlook-reset-view-run-command
    3. Restart Outlook.

    Using the VBA Code

    1. Open the Outlook app and select the Developer tab.
    2. If you don’t find it, turn it on by going to File > Options > Customize Ribbon and enabling the Developer checkbox in the right pane.
      Enable-the-Developer-tab
    3. Then, click Visual Basic.
      Select-Visual-Basic
    4. On the VBA window, click the Insert menu and select Module.
      Insert-Module-VBA-on-Outlook
    5. Copy and paste the following code into the main window.
      VBA-code-to-reset-Outlook-view
    Sub ResetOutlookViews()
    
     
     Dim objectName As Outlook.NameSpace
     
     Dim objectViews As Outlook.Views
     
     Dim objectView As Outlook.View
     
     Set objectName = Application.GetNamespace("MAPI")
     
     Set objectViews = objectName.GetDefaultFolder(olFolderInbox).Views
     
     For Each objectView In objectViews
     
     If objectView.Standard = True Then
     
     objectView.Reset
     
     End If
     
     Next objectView
     
    End Sub
    

    Related Questions

    My Inbox View Keeps Changing. How Do I Fix It?

    Even after resetting the Outlook view, it may change automatically the next time you open Outlook. This usually happens when you have a faulty add-in installed on Outlook. So you need to disable or uninstall such add-ins from Outlook.

    Here’s how to do it.

    1. Open the Outlook app.
    2. Click the File menu at the top.
    3. Then, select Options. Look for it in the bottom-left corner.
    4. Select Add-ins from the sidebar.
    5. Now, in the right pane, select COM Add-ins and click Go.
      Outlook-COM-add-ins
    6. Uncheck the checkbox to disable an add-in. Then, reset the view and relaunch Outlook. Do this for every installed add-in.
      Uncheck-to-disable-each-add-in
    7. Check if the Outlook view changes on its own. If yes, just disable that particular add-in (the most recent one you disabled). Alternatively, select it and click Remove to uninstall it.
    Jabin Manandhar

      As a tech content writer, Jabin covers Excel-related articles at InsideTheWeb. His articles mainly involve helping new users to quickly familiarize themselves with the Excel interface and explaining various essential features. While he got introduced to Excel in his early school days, he developed a keen interest in it after working on a college project. He was impressed at how quickly one could accomplish several tasks with built-in functions like the filter function and user-friendly tools like the power query. Keeping beginner audiences in mind, he loves to explain even the most fundamental Excel concepts in detail and break down complex topics with a step-by-step approach. As an avid Excel user, he believes every task can be done a lot quicker if you know the right tools and techniques. When he’s not behind a keyboard, he loves to listen to interesting audiobooks and podcasts.

      Related Posts

      Outlook By Jabin Manandhar

      How to Ignore Email Conversations in Outlook

      Outlook By Jabin Manandhar

      How to Hide Calendar Details in Outlook

      Outlook By Jabin Manandhar

      How to Insert Emoji and Smiley in Outlook

      Add A Comment
      Table of ContentsToggle Table of ContentToggle
      • Using the View Menu
      • Using the Run command
      • Using the VBA Code
      • Related Questions
        • My Inbox View Keeps Changing. How Do I Fix It?
      • Home
      • About Us
      • Privacy Policy
      © 2025 Inside The Web

      Type above and press Enter to search. Press Esc to cancel.