Compare more than one column in different sheet and remove
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
add a comment |
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
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
add a comment |
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
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
excel excel-formula vlookup
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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

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")
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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

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")
add a comment |
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

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")
add a comment |
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

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")
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

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")
answered Nov 12 '18 at 9:15
usmanhaqusmanhaq
1,123128
1,123128
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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