Dynamically filter data from one excel worksheet to display on another












0














Is there a straight forward way to have data stored in one worksheet automatically filtered and displayed on a different spreadsheet. I want to be able to update the data in one sheet and have the filtered view on the other worksheet update automatically.










share|improve this question
























  • What kind of filtering? Can you give some examples (some made up data and filtering, doesn't have to be anything real)?
    – jehad
    Jul 15 '16 at 1:12
















0














Is there a straight forward way to have data stored in one worksheet automatically filtered and displayed on a different spreadsheet. I want to be able to update the data in one sheet and have the filtered view on the other worksheet update automatically.










share|improve this question
























  • What kind of filtering? Can you give some examples (some made up data and filtering, doesn't have to be anything real)?
    – jehad
    Jul 15 '16 at 1:12














0












0








0







Is there a straight forward way to have data stored in one worksheet automatically filtered and displayed on a different spreadsheet. I want to be able to update the data in one sheet and have the filtered view on the other worksheet update automatically.










share|improve this question















Is there a straight forward way to have data stored in one worksheet automatically filtered and displayed on a different spreadsheet. I want to be able to update the data in one sheet and have the filtered view on the other worksheet update automatically.







microsoft-excel






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 22 '18 at 17:43









Blackwood

2,89461728




2,89461728










asked Jul 14 '16 at 6:33









akashic

62137




62137












  • What kind of filtering? Can you give some examples (some made up data and filtering, doesn't have to be anything real)?
    – jehad
    Jul 15 '16 at 1:12


















  • What kind of filtering? Can you give some examples (some made up data and filtering, doesn't have to be anything real)?
    – jehad
    Jul 15 '16 at 1:12
















What kind of filtering? Can you give some examples (some made up data and filtering, doesn't have to be anything real)?
– jehad
Jul 15 '16 at 1:12




What kind of filtering? Can you give some examples (some made up data and filtering, doesn't have to be anything real)?
– jehad
Jul 15 '16 at 1:12










2 Answers
2






active

oldest

votes


















0














Not sure what you mean by straight forward but you can as shown in my example below use formulas to filter and return matching rows:



From data in my sheet1 I can filter for data with specific text in a column



Sheet1



on Sheet2 add headings and type the text you wish to filter for in B1.



Sheet2 headings



In A5 add the following array formula



=IFERROR(INDEX(Sheet1!$A$2:$C$7,SMALL(IF(Sheet1!$B$2:$B$7=$B$1,ROW(Sheet1!$B$2:$B$7)-ROW(Sheet1!$B$2)+1),ROWS(Sheet1!A$2:Sheet1!A2)),1), "")


Press Ctrl + Shift +Enter to enter the formula as an array you will see the formula will be encased in curly brackets {}



Drag the formula in A5 across B5 to C5 to populate the row for the number of data columns required.



Ammend the formulas to increment the index column number.



Remember to ensure you re-enter the formula as an array formula by pressing Ctrl + Shift + Enter.



B5 should now show index column number 2



{=IFERROR(INDEX(Sheet1!$A$2:$C$7,SMALL(IF(Sheet1!$B$2:$B$7=$B$1,ROW(Sheet1!$B$2:$B$7)-ROW(Sheet1!$B$2)+1),ROWS(Sheet1!B$2:Sheet1!B2)),2), "")}


and C5 with column index 3 as follows



{=IFERROR(INDEX(Sheet1!$A$2:$C$7,SMALL(IF(Sheet1!$B$2:$B$7=$B$1,ROW(Sheet1!$B$2:$B$7)-ROW(Sheet1!$B$2)+1),ROWS(Sheet1!C$2:Sheet1!C2)),3), "")}


Drag these formulas down for your expected maximum number of data rows



Type in Animal vegatable or Mineral in Sheet2 cell B1 and the table should auto filter.



Sheet2 completed



This has tested ok for Excel 2010



You can automate this further by adding a Data Validation List for cell B1.






share|improve this answer































    0














    Another method using a data table



    Using same Sheet1 Data



    sheet1 data



    On Sheet3 select cell A5 and press Ctrl + T to create data table and select my table has headers and then OK.



    Select cell A5 and A6 and drag across the required number of columns



    and edit text to your column headings



    Sheet3 Headings



    In cell A6 add the following formula



    =IF(Sheet1!A2="","",Sheet1!A2)


    and drag A6 across required columns then down required rows



    enter image description here



    then use filters as required.






    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%2f1100696%2fdynamically-filter-data-from-one-excel-worksheet-to-display-on-another%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









      0














      Not sure what you mean by straight forward but you can as shown in my example below use formulas to filter and return matching rows:



      From data in my sheet1 I can filter for data with specific text in a column



      Sheet1



      on Sheet2 add headings and type the text you wish to filter for in B1.



      Sheet2 headings



      In A5 add the following array formula



      =IFERROR(INDEX(Sheet1!$A$2:$C$7,SMALL(IF(Sheet1!$B$2:$B$7=$B$1,ROW(Sheet1!$B$2:$B$7)-ROW(Sheet1!$B$2)+1),ROWS(Sheet1!A$2:Sheet1!A2)),1), "")


      Press Ctrl + Shift +Enter to enter the formula as an array you will see the formula will be encased in curly brackets {}



      Drag the formula in A5 across B5 to C5 to populate the row for the number of data columns required.



      Ammend the formulas to increment the index column number.



      Remember to ensure you re-enter the formula as an array formula by pressing Ctrl + Shift + Enter.



      B5 should now show index column number 2



      {=IFERROR(INDEX(Sheet1!$A$2:$C$7,SMALL(IF(Sheet1!$B$2:$B$7=$B$1,ROW(Sheet1!$B$2:$B$7)-ROW(Sheet1!$B$2)+1),ROWS(Sheet1!B$2:Sheet1!B2)),2), "")}


      and C5 with column index 3 as follows



      {=IFERROR(INDEX(Sheet1!$A$2:$C$7,SMALL(IF(Sheet1!$B$2:$B$7=$B$1,ROW(Sheet1!$B$2:$B$7)-ROW(Sheet1!$B$2)+1),ROWS(Sheet1!C$2:Sheet1!C2)),3), "")}


      Drag these formulas down for your expected maximum number of data rows



      Type in Animal vegatable or Mineral in Sheet2 cell B1 and the table should auto filter.



      Sheet2 completed



      This has tested ok for Excel 2010



      You can automate this further by adding a Data Validation List for cell B1.






      share|improve this answer




























        0














        Not sure what you mean by straight forward but you can as shown in my example below use formulas to filter and return matching rows:



        From data in my sheet1 I can filter for data with specific text in a column



        Sheet1



        on Sheet2 add headings and type the text you wish to filter for in B1.



        Sheet2 headings



        In A5 add the following array formula



        =IFERROR(INDEX(Sheet1!$A$2:$C$7,SMALL(IF(Sheet1!$B$2:$B$7=$B$1,ROW(Sheet1!$B$2:$B$7)-ROW(Sheet1!$B$2)+1),ROWS(Sheet1!A$2:Sheet1!A2)),1), "")


        Press Ctrl + Shift +Enter to enter the formula as an array you will see the formula will be encased in curly brackets {}



        Drag the formula in A5 across B5 to C5 to populate the row for the number of data columns required.



        Ammend the formulas to increment the index column number.



        Remember to ensure you re-enter the formula as an array formula by pressing Ctrl + Shift + Enter.



        B5 should now show index column number 2



        {=IFERROR(INDEX(Sheet1!$A$2:$C$7,SMALL(IF(Sheet1!$B$2:$B$7=$B$1,ROW(Sheet1!$B$2:$B$7)-ROW(Sheet1!$B$2)+1),ROWS(Sheet1!B$2:Sheet1!B2)),2), "")}


        and C5 with column index 3 as follows



        {=IFERROR(INDEX(Sheet1!$A$2:$C$7,SMALL(IF(Sheet1!$B$2:$B$7=$B$1,ROW(Sheet1!$B$2:$B$7)-ROW(Sheet1!$B$2)+1),ROWS(Sheet1!C$2:Sheet1!C2)),3), "")}


        Drag these formulas down for your expected maximum number of data rows



        Type in Animal vegatable or Mineral in Sheet2 cell B1 and the table should auto filter.



        Sheet2 completed



        This has tested ok for Excel 2010



        You can automate this further by adding a Data Validation List for cell B1.






        share|improve this answer


























          0












          0








          0






          Not sure what you mean by straight forward but you can as shown in my example below use formulas to filter and return matching rows:



          From data in my sheet1 I can filter for data with specific text in a column



          Sheet1



          on Sheet2 add headings and type the text you wish to filter for in B1.



          Sheet2 headings



          In A5 add the following array formula



          =IFERROR(INDEX(Sheet1!$A$2:$C$7,SMALL(IF(Sheet1!$B$2:$B$7=$B$1,ROW(Sheet1!$B$2:$B$7)-ROW(Sheet1!$B$2)+1),ROWS(Sheet1!A$2:Sheet1!A2)),1), "")


          Press Ctrl + Shift +Enter to enter the formula as an array you will see the formula will be encased in curly brackets {}



          Drag the formula in A5 across B5 to C5 to populate the row for the number of data columns required.



          Ammend the formulas to increment the index column number.



          Remember to ensure you re-enter the formula as an array formula by pressing Ctrl + Shift + Enter.



          B5 should now show index column number 2



          {=IFERROR(INDEX(Sheet1!$A$2:$C$7,SMALL(IF(Sheet1!$B$2:$B$7=$B$1,ROW(Sheet1!$B$2:$B$7)-ROW(Sheet1!$B$2)+1),ROWS(Sheet1!B$2:Sheet1!B2)),2), "")}


          and C5 with column index 3 as follows



          {=IFERROR(INDEX(Sheet1!$A$2:$C$7,SMALL(IF(Sheet1!$B$2:$B$7=$B$1,ROW(Sheet1!$B$2:$B$7)-ROW(Sheet1!$B$2)+1),ROWS(Sheet1!C$2:Sheet1!C2)),3), "")}


          Drag these formulas down for your expected maximum number of data rows



          Type in Animal vegatable or Mineral in Sheet2 cell B1 and the table should auto filter.



          Sheet2 completed



          This has tested ok for Excel 2010



          You can automate this further by adding a Data Validation List for cell B1.






          share|improve this answer














          Not sure what you mean by straight forward but you can as shown in my example below use formulas to filter and return matching rows:



          From data in my sheet1 I can filter for data with specific text in a column



          Sheet1



          on Sheet2 add headings and type the text you wish to filter for in B1.



          Sheet2 headings



          In A5 add the following array formula



          =IFERROR(INDEX(Sheet1!$A$2:$C$7,SMALL(IF(Sheet1!$B$2:$B$7=$B$1,ROW(Sheet1!$B$2:$B$7)-ROW(Sheet1!$B$2)+1),ROWS(Sheet1!A$2:Sheet1!A2)),1), "")


          Press Ctrl + Shift +Enter to enter the formula as an array you will see the formula will be encased in curly brackets {}



          Drag the formula in A5 across B5 to C5 to populate the row for the number of data columns required.



          Ammend the formulas to increment the index column number.



          Remember to ensure you re-enter the formula as an array formula by pressing Ctrl + Shift + Enter.



          B5 should now show index column number 2



          {=IFERROR(INDEX(Sheet1!$A$2:$C$7,SMALL(IF(Sheet1!$B$2:$B$7=$B$1,ROW(Sheet1!$B$2:$B$7)-ROW(Sheet1!$B$2)+1),ROWS(Sheet1!B$2:Sheet1!B2)),2), "")}


          and C5 with column index 3 as follows



          {=IFERROR(INDEX(Sheet1!$A$2:$C$7,SMALL(IF(Sheet1!$B$2:$B$7=$B$1,ROW(Sheet1!$B$2:$B$7)-ROW(Sheet1!$B$2)+1),ROWS(Sheet1!C$2:Sheet1!C2)),3), "")}


          Drag these formulas down for your expected maximum number of data rows



          Type in Animal vegatable or Mineral in Sheet2 cell B1 and the table should auto filter.



          Sheet2 completed



          This has tested ok for Excel 2010



          You can automate this further by adding a Data Validation List for cell B1.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jul 15 '16 at 7:22

























          answered Jul 15 '16 at 7:03









          Antony

          971912




          971912

























              0














              Another method using a data table



              Using same Sheet1 Data



              sheet1 data



              On Sheet3 select cell A5 and press Ctrl + T to create data table and select my table has headers and then OK.



              Select cell A5 and A6 and drag across the required number of columns



              and edit text to your column headings



              Sheet3 Headings



              In cell A6 add the following formula



              =IF(Sheet1!A2="","",Sheet1!A2)


              and drag A6 across required columns then down required rows



              enter image description here



              then use filters as required.






              share|improve this answer


























                0














                Another method using a data table



                Using same Sheet1 Data



                sheet1 data



                On Sheet3 select cell A5 and press Ctrl + T to create data table and select my table has headers and then OK.



                Select cell A5 and A6 and drag across the required number of columns



                and edit text to your column headings



                Sheet3 Headings



                In cell A6 add the following formula



                =IF(Sheet1!A2="","",Sheet1!A2)


                and drag A6 across required columns then down required rows



                enter image description here



                then use filters as required.






                share|improve this answer
























                  0












                  0








                  0






                  Another method using a data table



                  Using same Sheet1 Data



                  sheet1 data



                  On Sheet3 select cell A5 and press Ctrl + T to create data table and select my table has headers and then OK.



                  Select cell A5 and A6 and drag across the required number of columns



                  and edit text to your column headings



                  Sheet3 Headings



                  In cell A6 add the following formula



                  =IF(Sheet1!A2="","",Sheet1!A2)


                  and drag A6 across required columns then down required rows



                  enter image description here



                  then use filters as required.






                  share|improve this answer












                  Another method using a data table



                  Using same Sheet1 Data



                  sheet1 data



                  On Sheet3 select cell A5 and press Ctrl + T to create data table and select my table has headers and then OK.



                  Select cell A5 and A6 and drag across the required number of columns



                  and edit text to your column headings



                  Sheet3 Headings



                  In cell A6 add the following formula



                  =IF(Sheet1!A2="","",Sheet1!A2)


                  and drag A6 across required columns then down required rows



                  enter image description here



                  then use filters as required.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Jul 15 '16 at 10:42









                  Antony

                  971912




                  971912






























                      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.





                      Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                      Please pay close attention to the following guidance:


                      • 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%2f1100696%2fdynamically-filter-data-from-one-excel-worksheet-to-display-on-another%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

                      Probability when a professor distributes a quiz and homework assignment to a class of n students.

                      Aardman Animations

                      Are they similar matrix