Compare more than one column in different sheet and remove










-2














I have a problem - I have 2 tables.



First table :



Number | Factur | Items 
45001 18001 A
45001 18001 B
45001 18001 C
45002 18002 Z
45002 18002 A


Second Table :



Number | Factur | Items 
45001 18001 A
45002 18002 A


First table is my real data, and second table is my filter, so I want to match data between first table and second table with 3 parameter, if data match it will remove automatically



The result should be like this :



Number | Factur | Items 
45001 18001 B
45001 18001 C
45002 18002 Z


hope someone can help me me



Thanks in advance, cheers!!










share|improve this question























  • Please read through the Help Center, in particular How do I ask a good question? If you run into a specific problem, research it thoroughly, search thoroughly here, and if you're still stuck post your code and a description of the problem. Also, remember to include Minimum, Complete, Verifiable Example. People will be glad to help
    – Andreas
    Nov 12 '18 at 6:34















-2














I have a problem - I have 2 tables.



First table :



Number | Factur | Items 
45001 18001 A
45001 18001 B
45001 18001 C
45002 18002 Z
45002 18002 A


Second Table :



Number | Factur | Items 
45001 18001 A
45002 18002 A


First table is my real data, and second table is my filter, so I want to match data between first table and second table with 3 parameter, if data match it will remove automatically



The result should be like this :



Number | Factur | Items 
45001 18001 B
45001 18001 C
45002 18002 Z


hope someone can help me me



Thanks in advance, cheers!!










share|improve this question























  • Please read through the Help Center, in particular How do I ask a good question? If you run into a specific problem, research it thoroughly, search thoroughly here, and if you're still stuck post your code and a description of the problem. Also, remember to include Minimum, Complete, Verifiable Example. People will be glad to help
    – Andreas
    Nov 12 '18 at 6:34













-2












-2








-2







I have a problem - I have 2 tables.



First table :



Number | Factur | Items 
45001 18001 A
45001 18001 B
45001 18001 C
45002 18002 Z
45002 18002 A


Second Table :



Number | Factur | Items 
45001 18001 A
45002 18002 A


First table is my real data, and second table is my filter, so I want to match data between first table and second table with 3 parameter, if data match it will remove automatically



The result should be like this :



Number | Factur | Items 
45001 18001 B
45001 18001 C
45002 18002 Z


hope someone can help me me



Thanks in advance, cheers!!










share|improve this question















I have a problem - I have 2 tables.



First table :



Number | Factur | Items 
45001 18001 A
45001 18001 B
45001 18001 C
45002 18002 Z
45002 18002 A


Second Table :



Number | Factur | Items 
45001 18001 A
45002 18002 A


First table is my real data, and second table is my filter, so I want to match data between first table and second table with 3 parameter, if data match it will remove automatically



The result should be like this :



Number | Factur | Items 
45001 18001 B
45001 18001 C
45002 18002 Z


hope someone can help me me



Thanks in advance, cheers!!







excel excel-formula vlookup






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 22 '18 at 15:13









marc_s

572k12811051252




572k12811051252










asked Nov 12 '18 at 6:30









ReiRei

1618




1618











  • Please read through the Help Center, in particular How do I ask a good question? If you run into a specific problem, research it thoroughly, search thoroughly here, and if you're still stuck post your code and a description of the problem. Also, remember to include Minimum, Complete, Verifiable Example. People will be glad to help
    – Andreas
    Nov 12 '18 at 6:34
















  • Please read through the Help Center, in particular How do I ask a good question? If you run into a specific problem, research it thoroughly, search thoroughly here, and if you're still stuck post your code and a description of the problem. Also, remember to include Minimum, Complete, Verifiable Example. People will be glad to help
    – Andreas
    Nov 12 '18 at 6:34















Please read through the Help Center, in particular How do I ask a good question? If you run into a specific problem, research it thoroughly, search thoroughly here, and if you're still stuck post your code and a description of the problem. Also, remember to include Minimum, Complete, Verifiable Example. People will be glad to help
– Andreas
Nov 12 '18 at 6:34




Please read through the Help Center, in particular How do I ask a good question? If you run into a specific problem, research it thoroughly, search thoroughly here, and if you're still stuck post your code and a description of the problem. Also, remember to include Minimum, Complete, Verifiable Example. People will be glad to help
– Andreas
Nov 12 '18 at 6:34












1 Answer
1






active

oldest

votes


















0














Find below a screenshot of the formula i have applied



You can filter in column E on found and not found to get your desired output



enter image description here



I have created two additional columns, one for code and one for filtering



formula for code is simile concatenation of all three columns
in cell A3 it is =B3&C3&D3



and in cell A12 it is =B12&C12&D12



formula in cell E3 is simple vlookup with an if.



=IF(ISNA(VLOOKUP(A3,$A$12:$A$13,1,0)),"not found","found")





share|improve this answer




















    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    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%2fstackoverflow.com%2fquestions%2f53256933%2fcompare-more-than-one-column-in-different-sheet-and-remove%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














    Find below a screenshot of the formula i have applied



    You can filter in column E on found and not found to get your desired output



    enter image description here



    I have created two additional columns, one for code and one for filtering



    formula for code is simile concatenation of all three columns
    in cell A3 it is =B3&C3&D3



    and in cell A12 it is =B12&C12&D12



    formula in cell E3 is simple vlookup with an if.



    =IF(ISNA(VLOOKUP(A3,$A$12:$A$13,1,0)),"not found","found")





    share|improve this answer

























      0














      Find below a screenshot of the formula i have applied



      You can filter in column E on found and not found to get your desired output



      enter image description here



      I have created two additional columns, one for code and one for filtering



      formula for code is simile concatenation of all three columns
      in cell A3 it is =B3&C3&D3



      and in cell A12 it is =B12&C12&D12



      formula in cell E3 is simple vlookup with an if.



      =IF(ISNA(VLOOKUP(A3,$A$12:$A$13,1,0)),"not found","found")





      share|improve this answer























        0












        0








        0






        Find below a screenshot of the formula i have applied



        You can filter in column E on found and not found to get your desired output



        enter image description here



        I have created two additional columns, one for code and one for filtering



        formula for code is simile concatenation of all three columns
        in cell A3 it is =B3&C3&D3



        and in cell A12 it is =B12&C12&D12



        formula in cell E3 is simple vlookup with an if.



        =IF(ISNA(VLOOKUP(A3,$A$12:$A$13,1,0)),"not found","found")





        share|improve this answer












        Find below a screenshot of the formula i have applied



        You can filter in column E on found and not found to get your desired output



        enter image description here



        I have created two additional columns, one for code and one for filtering



        formula for code is simile concatenation of all three columns
        in cell A3 it is =B3&C3&D3



        and in cell A12 it is =B12&C12&D12



        formula in cell E3 is simple vlookup with an if.



        =IF(ISNA(VLOOKUP(A3,$A$12:$A$13,1,0)),"not found","found")






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 12 '18 at 9:15









        usmanhaqusmanhaq

        1,123128




        1,123128



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • 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%2fstackoverflow.com%2fquestions%2f53256933%2fcompare-more-than-one-column-in-different-sheet-and-remove%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

            Kleinkühnau

            Makov (Slowakei)

            Peter Parker: The Spectacular Spider-Man #308