Extracting Data from one Excel Doc to another











up vote
0
down vote

favorite












I don't have the exact verbiage here to use, so please bare with me. I cannot do screenshots due to proprietary information being in the data set.



Here is what I am trying to do and I am looking for the formula to help me do it. In Excel Doc 1 there contains Store and Region. Store is located in Column A and Region is located in Column L. I can of course move this around if need be.



In Excel Doc 2 only store number is available; however, I need the region in this document as well. How do I get the region in Excel doc 2 to match what is in Excel Doc 1?



Thanks! -Ashley










share|improve this question






















  • Try the VLOOKUP function.
    – Blackwood
    Nov 27 at 3:13










  • Could you provide a sample screenshot?
    – Lee
    Nov 27 at 9:51















up vote
0
down vote

favorite












I don't have the exact verbiage here to use, so please bare with me. I cannot do screenshots due to proprietary information being in the data set.



Here is what I am trying to do and I am looking for the formula to help me do it. In Excel Doc 1 there contains Store and Region. Store is located in Column A and Region is located in Column L. I can of course move this around if need be.



In Excel Doc 2 only store number is available; however, I need the region in this document as well. How do I get the region in Excel doc 2 to match what is in Excel Doc 1?



Thanks! -Ashley










share|improve this question






















  • Try the VLOOKUP function.
    – Blackwood
    Nov 27 at 3:13










  • Could you provide a sample screenshot?
    – Lee
    Nov 27 at 9:51













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I don't have the exact verbiage here to use, so please bare with me. I cannot do screenshots due to proprietary information being in the data set.



Here is what I am trying to do and I am looking for the formula to help me do it. In Excel Doc 1 there contains Store and Region. Store is located in Column A and Region is located in Column L. I can of course move this around if need be.



In Excel Doc 2 only store number is available; however, I need the region in this document as well. How do I get the region in Excel doc 2 to match what is in Excel Doc 1?



Thanks! -Ashley










share|improve this question













I don't have the exact verbiage here to use, so please bare with me. I cannot do screenshots due to proprietary information being in the data set.



Here is what I am trying to do and I am looking for the formula to help me do it. In Excel Doc 1 there contains Store and Region. Store is located in Column A and Region is located in Column L. I can of course move this around if need be.



In Excel Doc 2 only store number is available; however, I need the region in this document as well. How do I get the region in Excel doc 2 to match what is in Excel Doc 1?



Thanks! -Ashley







microsoft-excel microsoft-excel-2010






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 27 at 3:01









Ashley

1




1












  • Try the VLOOKUP function.
    – Blackwood
    Nov 27 at 3:13










  • Could you provide a sample screenshot?
    – Lee
    Nov 27 at 9:51


















  • Try the VLOOKUP function.
    – Blackwood
    Nov 27 at 3:13










  • Could you provide a sample screenshot?
    – Lee
    Nov 27 at 9:51
















Try the VLOOKUP function.
– Blackwood
Nov 27 at 3:13




Try the VLOOKUP function.
– Blackwood
Nov 27 at 3:13












Could you provide a sample screenshot?
– Lee
Nov 27 at 9:51




Could you provide a sample screenshot?
– Lee
Nov 27 at 9:51










1 Answer
1






active

oldest

votes

















up vote
0
down vote













I'm assuming that the Store Numbers are written in Column A in Sheet 2.



Enter this Formula in Cell B2 of Sheet 2 and fill it down.



=IFERROR(VLOOKUP(A2,Sheet1!A2:L40,12,FALSE),"No Match")


Note,





  • 12, in the above Formula is Column position
    for Column L.


  • IFERROR will return No Match text when Formula doesn't found Store Number in Sheet 1.


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',
    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%2f1378629%2fextracting-data-from-one-excel-doc-to-another%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    0
    down vote













    I'm assuming that the Store Numbers are written in Column A in Sheet 2.



    Enter this Formula in Cell B2 of Sheet 2 and fill it down.



    =IFERROR(VLOOKUP(A2,Sheet1!A2:L40,12,FALSE),"No Match")


    Note,





    • 12, in the above Formula is Column position
      for Column L.


    • IFERROR will return No Match text when Formula doesn't found Store Number in Sheet 1.


    Adjust cell references in the Formula as needed.






    share|improve this answer

























      up vote
      0
      down vote













      I'm assuming that the Store Numbers are written in Column A in Sheet 2.



      Enter this Formula in Cell B2 of Sheet 2 and fill it down.



      =IFERROR(VLOOKUP(A2,Sheet1!A2:L40,12,FALSE),"No Match")


      Note,





      • 12, in the above Formula is Column position
        for Column L.


      • IFERROR will return No Match text when Formula doesn't found Store Number in Sheet 1.


      Adjust cell references in the Formula as needed.






      share|improve this answer























        up vote
        0
        down vote










        up vote
        0
        down vote









        I'm assuming that the Store Numbers are written in Column A in Sheet 2.



        Enter this Formula in Cell B2 of Sheet 2 and fill it down.



        =IFERROR(VLOOKUP(A2,Sheet1!A2:L40,12,FALSE),"No Match")


        Note,





        • 12, in the above Formula is Column position
          for Column L.


        • IFERROR will return No Match text when Formula doesn't found Store Number in Sheet 1.


        Adjust cell references in the Formula as needed.






        share|improve this answer












        I'm assuming that the Store Numbers are written in Column A in Sheet 2.



        Enter this Formula in Cell B2 of Sheet 2 and fill it down.



        =IFERROR(VLOOKUP(A2,Sheet1!A2:L40,12,FALSE),"No Match")


        Note,





        • 12, in the above Formula is Column position
          for Column L.


        • IFERROR will return No Match text when Formula doesn't found Store Number in Sheet 1.


        Adjust cell references in the Formula as needed.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 27 at 5:03









        Rajesh S

        3,5561522




        3,5561522






























            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%2f1378629%2fextracting-data-from-one-excel-doc-to-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

            Список кардиналов, возведённых папой римским Каликстом III

            Deduzione

            Mysql.sock missing - “Can't connect to local MySQL server through socket”