Having trouble comparing multiple columns and rows in different worksheets in excel












0














I have limited knowledge of formulas in excel and would really appreciate help with this question:



I have two worksheets: Worksheet1 and Worksheet2. Worksheet A1 shows a list of all the samples that are in a lab, and Worksheet2 shows a list of only the samples in the lab that have been analyzed and have results. Column A in both worksheets is the lab #, but as just mentioned column A in Worksheet1 contains all the lab numbers of the samples in the lab, and column A in Worksheet2 contains the lab numbers of only the analyzed samples. Some samples have 2 analysis methods so they appear twice in column A in Worksheet2. Three types of analysis were performed: U/Pb, At/At, and K/Ar; these correspond to columns B, C, D in Worksheet1 respectively. Column B in Worksheet2 names the type of analysis performed. I need to fill out columns B, C and D in Worksheet1 the following way:



First of all, I need to compare column A in Worksheet1 to column A in Worksheet2; if the lab number value in A in Worksheet1 appears in A in Worksheet2, then look at column B in Worksheet2 to check what kind of analysis was done. If analysis U/Pb was done, fill the respective cell in Worksheet1 with YES or "(blank)" for that analysis type; i.e. if analysis U/Pb and K/Ar was done for sample 427, then YES should appear in column B and D, columns C should be blank. If analysis K/Ar was done for sample 482 then YES should appear in columns D and B and C should be blank.



I've included a screenshot of the worksheets:



Worksheet1



Worksheet2










share|improve this question





























    0














    I have limited knowledge of formulas in excel and would really appreciate help with this question:



    I have two worksheets: Worksheet1 and Worksheet2. Worksheet A1 shows a list of all the samples that are in a lab, and Worksheet2 shows a list of only the samples in the lab that have been analyzed and have results. Column A in both worksheets is the lab #, but as just mentioned column A in Worksheet1 contains all the lab numbers of the samples in the lab, and column A in Worksheet2 contains the lab numbers of only the analyzed samples. Some samples have 2 analysis methods so they appear twice in column A in Worksheet2. Three types of analysis were performed: U/Pb, At/At, and K/Ar; these correspond to columns B, C, D in Worksheet1 respectively. Column B in Worksheet2 names the type of analysis performed. I need to fill out columns B, C and D in Worksheet1 the following way:



    First of all, I need to compare column A in Worksheet1 to column A in Worksheet2; if the lab number value in A in Worksheet1 appears in A in Worksheet2, then look at column B in Worksheet2 to check what kind of analysis was done. If analysis U/Pb was done, fill the respective cell in Worksheet1 with YES or "(blank)" for that analysis type; i.e. if analysis U/Pb and K/Ar was done for sample 427, then YES should appear in column B and D, columns C should be blank. If analysis K/Ar was done for sample 482 then YES should appear in columns D and B and C should be blank.



    I've included a screenshot of the worksheets:



    Worksheet1



    Worksheet2










    share|improve this question



























      0












      0








      0







      I have limited knowledge of formulas in excel and would really appreciate help with this question:



      I have two worksheets: Worksheet1 and Worksheet2. Worksheet A1 shows a list of all the samples that are in a lab, and Worksheet2 shows a list of only the samples in the lab that have been analyzed and have results. Column A in both worksheets is the lab #, but as just mentioned column A in Worksheet1 contains all the lab numbers of the samples in the lab, and column A in Worksheet2 contains the lab numbers of only the analyzed samples. Some samples have 2 analysis methods so they appear twice in column A in Worksheet2. Three types of analysis were performed: U/Pb, At/At, and K/Ar; these correspond to columns B, C, D in Worksheet1 respectively. Column B in Worksheet2 names the type of analysis performed. I need to fill out columns B, C and D in Worksheet1 the following way:



      First of all, I need to compare column A in Worksheet1 to column A in Worksheet2; if the lab number value in A in Worksheet1 appears in A in Worksheet2, then look at column B in Worksheet2 to check what kind of analysis was done. If analysis U/Pb was done, fill the respective cell in Worksheet1 with YES or "(blank)" for that analysis type; i.e. if analysis U/Pb and K/Ar was done for sample 427, then YES should appear in column B and D, columns C should be blank. If analysis K/Ar was done for sample 482 then YES should appear in columns D and B and C should be blank.



      I've included a screenshot of the worksheets:



      Worksheet1



      Worksheet2










      share|improve this question















      I have limited knowledge of formulas in excel and would really appreciate help with this question:



      I have two worksheets: Worksheet1 and Worksheet2. Worksheet A1 shows a list of all the samples that are in a lab, and Worksheet2 shows a list of only the samples in the lab that have been analyzed and have results. Column A in both worksheets is the lab #, but as just mentioned column A in Worksheet1 contains all the lab numbers of the samples in the lab, and column A in Worksheet2 contains the lab numbers of only the analyzed samples. Some samples have 2 analysis methods so they appear twice in column A in Worksheet2. Three types of analysis were performed: U/Pb, At/At, and K/Ar; these correspond to columns B, C, D in Worksheet1 respectively. Column B in Worksheet2 names the type of analysis performed. I need to fill out columns B, C and D in Worksheet1 the following way:



      First of all, I need to compare column A in Worksheet1 to column A in Worksheet2; if the lab number value in A in Worksheet1 appears in A in Worksheet2, then look at column B in Worksheet2 to check what kind of analysis was done. If analysis U/Pb was done, fill the respective cell in Worksheet1 with YES or "(blank)" for that analysis type; i.e. if analysis U/Pb and K/Ar was done for sample 427, then YES should appear in column B and D, columns C should be blank. If analysis K/Ar was done for sample 482 then YES should appear in columns D and B and C should be blank.



      I've included a screenshot of the worksheets:



      Worksheet1



      Worksheet2







      microsoft-excel microsoft-excel-2010 conditional-formatting






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Dec 10 '18 at 20:01









      cybernetic.nomad

      1,236112




      1,236112










      asked Dec 10 '18 at 17:17









      Pamela IM

      1




      1






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Fill in sheet A1 cell B2 with:



          =IF(IFERROR(VLOOKUP($A2,'A2'!$A:$B,2,FALSE)="U/Pb","FALSE"),"YES","")


          Cell C2 with:



          =IF(IFERROR(VLOOKUP($A2,'A2'!$A:$B,2,FALSE)="Ar/Ar","FALSE"),"YES","")


          Cell D2 with:



          =IF(IFERROR(VLOOKUP($A2,'A2'!$A:$B,2,FALSE)="K/Ar","FALSE"),"YES","")


          Copy formulas down your sheet. I guessed at Ar/Ar (At/At?) following the same pattern as the other two. Please mark as answer if this does the trick for you.






          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%2f1382383%2fhaving-trouble-comparing-multiple-columns-and-rows-in-different-worksheets-in-ex%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









            0














            Fill in sheet A1 cell B2 with:



            =IF(IFERROR(VLOOKUP($A2,'A2'!$A:$B,2,FALSE)="U/Pb","FALSE"),"YES","")


            Cell C2 with:



            =IF(IFERROR(VLOOKUP($A2,'A2'!$A:$B,2,FALSE)="Ar/Ar","FALSE"),"YES","")


            Cell D2 with:



            =IF(IFERROR(VLOOKUP($A2,'A2'!$A:$B,2,FALSE)="K/Ar","FALSE"),"YES","")


            Copy formulas down your sheet. I guessed at Ar/Ar (At/At?) following the same pattern as the other two. Please mark as answer if this does the trick for you.






            share|improve this answer




























              0














              Fill in sheet A1 cell B2 with:



              =IF(IFERROR(VLOOKUP($A2,'A2'!$A:$B,2,FALSE)="U/Pb","FALSE"),"YES","")


              Cell C2 with:



              =IF(IFERROR(VLOOKUP($A2,'A2'!$A:$B,2,FALSE)="Ar/Ar","FALSE"),"YES","")


              Cell D2 with:



              =IF(IFERROR(VLOOKUP($A2,'A2'!$A:$B,2,FALSE)="K/Ar","FALSE"),"YES","")


              Copy formulas down your sheet. I guessed at Ar/Ar (At/At?) following the same pattern as the other two. Please mark as answer if this does the trick for you.






              share|improve this answer


























                0












                0








                0






                Fill in sheet A1 cell B2 with:



                =IF(IFERROR(VLOOKUP($A2,'A2'!$A:$B,2,FALSE)="U/Pb","FALSE"),"YES","")


                Cell C2 with:



                =IF(IFERROR(VLOOKUP($A2,'A2'!$A:$B,2,FALSE)="Ar/Ar","FALSE"),"YES","")


                Cell D2 with:



                =IF(IFERROR(VLOOKUP($A2,'A2'!$A:$B,2,FALSE)="K/Ar","FALSE"),"YES","")


                Copy formulas down your sheet. I guessed at Ar/Ar (At/At?) following the same pattern as the other two. Please mark as answer if this does the trick for you.






                share|improve this answer














                Fill in sheet A1 cell B2 with:



                =IF(IFERROR(VLOOKUP($A2,'A2'!$A:$B,2,FALSE)="U/Pb","FALSE"),"YES","")


                Cell C2 with:



                =IF(IFERROR(VLOOKUP($A2,'A2'!$A:$B,2,FALSE)="Ar/Ar","FALSE"),"YES","")


                Cell D2 with:



                =IF(IFERROR(VLOOKUP($A2,'A2'!$A:$B,2,FALSE)="K/Ar","FALSE"),"YES","")


                Copy formulas down your sheet. I guessed at Ar/Ar (At/At?) following the same pattern as the other two. Please mark as answer if this does the trick for you.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Dec 10 '18 at 18:27

























                answered Dec 10 '18 at 18:07









                Brian

                643




                643






























                    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%2f1382383%2fhaving-trouble-comparing-multiple-columns-and-rows-in-different-worksheets-in-ex%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”