Microsoft Excel: display realtime filtering data from another worksheet












0















I want to display all rows that has Gender column equal to M inside sheet2. The data is retrieved from sheet1. The filtered data also has to be real time, meaning whenever I make change in gender column in sheet1, sheet2 data should also change accordingly. How could I achieve this?



sheet 1



sheet 1 image link



sheet 2



sheet 2 image link



Thank for helping me out!










share|improve this question



























    0















    I want to display all rows that has Gender column equal to M inside sheet2. The data is retrieved from sheet1. The filtered data also has to be real time, meaning whenever I make change in gender column in sheet1, sheet2 data should also change accordingly. How could I achieve this?



    sheet 1



    sheet 1 image link



    sheet 2



    sheet 2 image link



    Thank for helping me out!










    share|improve this question

























      0












      0








      0


      1






      I want to display all rows that has Gender column equal to M inside sheet2. The data is retrieved from sheet1. The filtered data also has to be real time, meaning whenever I make change in gender column in sheet1, sheet2 data should also change accordingly. How could I achieve this?



      sheet 1



      sheet 1 image link



      sheet 2



      sheet 2 image link



      Thank for helping me out!










      share|improve this question














      I want to display all rows that has Gender column equal to M inside sheet2. The data is retrieved from sheet1. The filtered data also has to be real time, meaning whenever I make change in gender column in sheet1, sheet2 data should also change accordingly. How could I achieve this?



      sheet 1



      sheet 1 image link



      sheet 2



      sheet 2 image link



      Thank for helping me out!







      microsoft-excel worksheet-function spreadsheet






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 1 at 7:48









      SokunthanethSokunthaneth

      85




      85






















          2 Answers
          2






          active

          oldest

          votes


















          1














          Try to use Power Query to get the result:




          1. Select Range- go to Data- select From Range/Table- Enter Power Query Editor:
            enter image description here


          2. Filter Gender Column- Close and Load to New WorkSheet:
            enter image description here



          If you update data in Sheet1 Table, the data in Sheet2 will update after refreshing.






          share|improve this answer































            0














            To solve the issue you need to create a Helper Column in Sheet 1.



            enter image description here



            Formula in Cell D2 & fill it Down.



            =IF(C2="M",1+MAX($D$1:D1),"")



            Write this Formula in Cell A2 of Sheet 2 & fill it Right then Down.



            =IFERROR(INDEX(Sheet1!A:A,MATCH(ROWS($1:1),Sheet1!$D:$D,0)),"")


            How it works:



            This simple INDEX & MATCH combination did the magic & Filters all Rows have Gender M.



            Where MATCH(Rows($1:1), returns 1 and as soon drag down it completes, 1, 2, 3, 4 , 5 & 6 and so on, and the Formula uses these values to Match & Filter Rows for M.



            enter image description here



            Note:




            1. You can find New Records (Red Color) in the 2nd Screen Shot been filtered also in Sheet 2.

            2. Formula in Sheet 2 will reflect modifications in Gender also.


            enter image description here





            1. Name I's gender (Filled with Yellow color) been modified, excluded by the formula in Sheet 2.

            2. Adjust Cell references in the Formula as needed.






            share|improve this answer

























              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',
              autoActivateHeartbeat: false,
              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%2f1389474%2fmicrosoft-excel-display-realtime-filtering-data-from-another-worksheet%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









              1














              Try to use Power Query to get the result:




              1. Select Range- go to Data- select From Range/Table- Enter Power Query Editor:
                enter image description here


              2. Filter Gender Column- Close and Load to New WorkSheet:
                enter image description here



              If you update data in Sheet1 Table, the data in Sheet2 will update after refreshing.






              share|improve this answer




























                1














                Try to use Power Query to get the result:




                1. Select Range- go to Data- select From Range/Table- Enter Power Query Editor:
                  enter image description here


                2. Filter Gender Column- Close and Load to New WorkSheet:
                  enter image description here



                If you update data in Sheet1 Table, the data in Sheet2 will update after refreshing.






                share|improve this answer


























                  1












                  1








                  1







                  Try to use Power Query to get the result:




                  1. Select Range- go to Data- select From Range/Table- Enter Power Query Editor:
                    enter image description here


                  2. Filter Gender Column- Close and Load to New WorkSheet:
                    enter image description here



                  If you update data in Sheet1 Table, the data in Sheet2 will update after refreshing.






                  share|improve this answer













                  Try to use Power Query to get the result:




                  1. Select Range- go to Data- select From Range/Table- Enter Power Query Editor:
                    enter image description here


                  2. Filter Gender Column- Close and Load to New WorkSheet:
                    enter image description here



                  If you update data in Sheet1 Table, the data in Sheet2 will update after refreshing.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jan 2 at 8:22









                  LeeLee

                  89927




                  89927

























                      0














                      To solve the issue you need to create a Helper Column in Sheet 1.



                      enter image description here



                      Formula in Cell D2 & fill it Down.



                      =IF(C2="M",1+MAX($D$1:D1),"")



                      Write this Formula in Cell A2 of Sheet 2 & fill it Right then Down.



                      =IFERROR(INDEX(Sheet1!A:A,MATCH(ROWS($1:1),Sheet1!$D:$D,0)),"")


                      How it works:



                      This simple INDEX & MATCH combination did the magic & Filters all Rows have Gender M.



                      Where MATCH(Rows($1:1), returns 1 and as soon drag down it completes, 1, 2, 3, 4 , 5 & 6 and so on, and the Formula uses these values to Match & Filter Rows for M.



                      enter image description here



                      Note:




                      1. You can find New Records (Red Color) in the 2nd Screen Shot been filtered also in Sheet 2.

                      2. Formula in Sheet 2 will reflect modifications in Gender also.


                      enter image description here





                      1. Name I's gender (Filled with Yellow color) been modified, excluded by the formula in Sheet 2.

                      2. Adjust Cell references in the Formula as needed.






                      share|improve this answer






























                        0














                        To solve the issue you need to create a Helper Column in Sheet 1.



                        enter image description here



                        Formula in Cell D2 & fill it Down.



                        =IF(C2="M",1+MAX($D$1:D1),"")



                        Write this Formula in Cell A2 of Sheet 2 & fill it Right then Down.



                        =IFERROR(INDEX(Sheet1!A:A,MATCH(ROWS($1:1),Sheet1!$D:$D,0)),"")


                        How it works:



                        This simple INDEX & MATCH combination did the magic & Filters all Rows have Gender M.



                        Where MATCH(Rows($1:1), returns 1 and as soon drag down it completes, 1, 2, 3, 4 , 5 & 6 and so on, and the Formula uses these values to Match & Filter Rows for M.



                        enter image description here



                        Note:




                        1. You can find New Records (Red Color) in the 2nd Screen Shot been filtered also in Sheet 2.

                        2. Formula in Sheet 2 will reflect modifications in Gender also.


                        enter image description here





                        1. Name I's gender (Filled with Yellow color) been modified, excluded by the formula in Sheet 2.

                        2. Adjust Cell references in the Formula as needed.






                        share|improve this answer




























                          0












                          0








                          0







                          To solve the issue you need to create a Helper Column in Sheet 1.



                          enter image description here



                          Formula in Cell D2 & fill it Down.



                          =IF(C2="M",1+MAX($D$1:D1),"")



                          Write this Formula in Cell A2 of Sheet 2 & fill it Right then Down.



                          =IFERROR(INDEX(Sheet1!A:A,MATCH(ROWS($1:1),Sheet1!$D:$D,0)),"")


                          How it works:



                          This simple INDEX & MATCH combination did the magic & Filters all Rows have Gender M.



                          Where MATCH(Rows($1:1), returns 1 and as soon drag down it completes, 1, 2, 3, 4 , 5 & 6 and so on, and the Formula uses these values to Match & Filter Rows for M.



                          enter image description here



                          Note:




                          1. You can find New Records (Red Color) in the 2nd Screen Shot been filtered also in Sheet 2.

                          2. Formula in Sheet 2 will reflect modifications in Gender also.


                          enter image description here





                          1. Name I's gender (Filled with Yellow color) been modified, excluded by the formula in Sheet 2.

                          2. Adjust Cell references in the Formula as needed.






                          share|improve this answer















                          To solve the issue you need to create a Helper Column in Sheet 1.



                          enter image description here



                          Formula in Cell D2 & fill it Down.



                          =IF(C2="M",1+MAX($D$1:D1),"")



                          Write this Formula in Cell A2 of Sheet 2 & fill it Right then Down.



                          =IFERROR(INDEX(Sheet1!A:A,MATCH(ROWS($1:1),Sheet1!$D:$D,0)),"")


                          How it works:



                          This simple INDEX & MATCH combination did the magic & Filters all Rows have Gender M.



                          Where MATCH(Rows($1:1), returns 1 and as soon drag down it completes, 1, 2, 3, 4 , 5 & 6 and so on, and the Formula uses these values to Match & Filter Rows for M.



                          enter image description here



                          Note:




                          1. You can find New Records (Red Color) in the 2nd Screen Shot been filtered also in Sheet 2.

                          2. Formula in Sheet 2 will reflect modifications in Gender also.


                          enter image description here





                          1. Name I's gender (Filled with Yellow color) been modified, excluded by the formula in Sheet 2.

                          2. Adjust Cell references in the Formula as needed.







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Jan 3 at 6:03

























                          answered Jan 2 at 6:36









                          Rajesh SRajesh S

                          1




                          1






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Super User!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1389474%2fmicrosoft-excel-display-realtime-filtering-data-from-another-worksheet%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

                              Plaza Victoria

                              In PowerPoint, is there a keyboard shortcut for bulleted / numbered list?

                              How to put 3 figures in Latex with 2 figures side by side and 1 below these side by side images but in...