How do I make a search filter that includes unread messages OR flagged messages?











up vote
1
down vote

favorite












I can make a search filter based on unread AND flagged messages. But what I need is unread OR Flagged messages. To make a sort of "pay attention to these items" search folder.



When I try to use the advanced search tool, unread is no longer an option that I can find. Maybe I am blind.



Thank you.










share|improve this question


























    up vote
    1
    down vote

    favorite












    I can make a search filter based on unread AND flagged messages. But what I need is unread OR Flagged messages. To make a sort of "pay attention to these items" search folder.



    When I try to use the advanced search tool, unread is no longer an option that I can find. Maybe I am blind.



    Thank you.










    share|improve this question
























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      I can make a search filter based on unread AND flagged messages. But what I need is unread OR Flagged messages. To make a sort of "pay attention to these items" search folder.



      When I try to use the advanced search tool, unread is no longer an option that I can find. Maybe I am blind.



      Thank you.










      share|improve this question













      I can make a search filter based on unread AND flagged messages. But what I need is unread OR Flagged messages. To make a sort of "pay attention to these items" search folder.



      When I try to use the advanced search tool, unread is no longer an option that I can find. Maybe I am blind.



      Thank you.







      microsoft-office microsoft-outlook-2013






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jun 2 '17 at 12:29









      DrFloyd5

      1155




      1155






















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          1
          down vote



          accepted










          You can create a custom folder view and specify a filter criteria manually on the SQL tab like this:



          ("urn:schemas:httpmail:read" = 0 OR NOT("urn:schemas:httpmail:messageflag" IS NULL))


          Unfortunately, Outlook UI doesn't allow you to specify this kind of criteria for a search folder =( It can only be done programmatically using MAPI.






          share|improve this answer























          • Thank you. It seems a shame that you can't filter on unread in the other filters.
            – DrFloyd5
            Jun 2 '17 at 13:47


















          up vote
          0
          down vote













          Not ideal, but I Edit'ed one of the Smart Folders in Outlook '16 (Mac OS X) to filter on these two clauses:




          1. Folder is Inbox

          2. 'Raw Query': com_microsoft_outlook_unread == 1 || com_microsoft_outlook_flagged == 1






          share|improve this answer








          New contributor




          Foxichu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.


















            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "3"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














             

            draft saved


            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1215374%2fhow-do-i-make-a-search-filter-that-includes-unread-messages-or-flagged-messages%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            1
            down vote



            accepted










            You can create a custom folder view and specify a filter criteria manually on the SQL tab like this:



            ("urn:schemas:httpmail:read" = 0 OR NOT("urn:schemas:httpmail:messageflag" IS NULL))


            Unfortunately, Outlook UI doesn't allow you to specify this kind of criteria for a search folder =( It can only be done programmatically using MAPI.






            share|improve this answer























            • Thank you. It seems a shame that you can't filter on unread in the other filters.
              – DrFloyd5
              Jun 2 '17 at 13:47















            up vote
            1
            down vote



            accepted










            You can create a custom folder view and specify a filter criteria manually on the SQL tab like this:



            ("urn:schemas:httpmail:read" = 0 OR NOT("urn:schemas:httpmail:messageflag" IS NULL))


            Unfortunately, Outlook UI doesn't allow you to specify this kind of criteria for a search folder =( It can only be done programmatically using MAPI.






            share|improve this answer























            • Thank you. It seems a shame that you can't filter on unread in the other filters.
              – DrFloyd5
              Jun 2 '17 at 13:47













            up vote
            1
            down vote



            accepted







            up vote
            1
            down vote



            accepted






            You can create a custom folder view and specify a filter criteria manually on the SQL tab like this:



            ("urn:schemas:httpmail:read" = 0 OR NOT("urn:schemas:httpmail:messageflag" IS NULL))


            Unfortunately, Outlook UI doesn't allow you to specify this kind of criteria for a search folder =( It can only be done programmatically using MAPI.






            share|improve this answer














            You can create a custom folder view and specify a filter criteria manually on the SQL tab like this:



            ("urn:schemas:httpmail:read" = 0 OR NOT("urn:schemas:httpmail:messageflag" IS NULL))


            Unfortunately, Outlook UI doesn't allow you to specify this kind of criteria for a search folder =( It can only be done programmatically using MAPI.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Jun 2 '17 at 13:13

























            answered Jun 2 '17 at 13:07









            thims

            7,2791833




            7,2791833












            • Thank you. It seems a shame that you can't filter on unread in the other filters.
              – DrFloyd5
              Jun 2 '17 at 13:47


















            • Thank you. It seems a shame that you can't filter on unread in the other filters.
              – DrFloyd5
              Jun 2 '17 at 13:47
















            Thank you. It seems a shame that you can't filter on unread in the other filters.
            – DrFloyd5
            Jun 2 '17 at 13:47




            Thank you. It seems a shame that you can't filter on unread in the other filters.
            – DrFloyd5
            Jun 2 '17 at 13:47












            up vote
            0
            down vote













            Not ideal, but I Edit'ed one of the Smart Folders in Outlook '16 (Mac OS X) to filter on these two clauses:




            1. Folder is Inbox

            2. 'Raw Query': com_microsoft_outlook_unread == 1 || com_microsoft_outlook_flagged == 1






            share|improve this answer








            New contributor




            Foxichu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.






















              up vote
              0
              down vote













              Not ideal, but I Edit'ed one of the Smart Folders in Outlook '16 (Mac OS X) to filter on these two clauses:




              1. Folder is Inbox

              2. 'Raw Query': com_microsoft_outlook_unread == 1 || com_microsoft_outlook_flagged == 1






              share|improve this answer








              New contributor




              Foxichu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.




















                up vote
                0
                down vote










                up vote
                0
                down vote









                Not ideal, but I Edit'ed one of the Smart Folders in Outlook '16 (Mac OS X) to filter on these two clauses:




                1. Folder is Inbox

                2. 'Raw Query': com_microsoft_outlook_unread == 1 || com_microsoft_outlook_flagged == 1






                share|improve this answer








                New contributor




                Foxichu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.









                Not ideal, but I Edit'ed one of the Smart Folders in Outlook '16 (Mac OS X) to filter on these two clauses:




                1. Folder is Inbox

                2. 'Raw Query': com_microsoft_outlook_unread == 1 || com_microsoft_outlook_flagged == 1







                share|improve this answer








                New contributor




                Foxichu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.









                share|improve this answer



                share|improve this answer






                New contributor




                Foxichu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.









                answered Nov 20 at 15:51









                Foxichu

                101




                101




                New contributor




                Foxichu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.





                New contributor





                Foxichu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.






                Foxichu is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.






























                     

                    draft saved


                    draft discarded



















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1215374%2fhow-do-i-make-a-search-filter-that-includes-unread-messages-or-flagged-messages%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    How do I know what Microsoft account the skydrive app is syncing to?

                    Grease: Live!

                    When does type information flow backwards in C++?