excel - Compare entire rows in two sheets -



excel - Compare entire rows in two sheets -

i have 2 sheets same info , want compare entire row in 2 sheets.

on sheet1 (old data) col | col b 1001 | val 1 2001 | val 2 3001 | val 3 on sheet2 (new data) col | col b | c 3001 | val 3 |true 1001 | new val 1 |false 2001 | new val 2 |false

instead of trying think in terms of comparing rows, create problem simpler. easier compare single cell - first combine "whole row" single cell. easy concatenating cells using & symbol.

insert new (hidden) column c on both sheets, combines other columns formula like:

= a1 & b1

now have summary easy compare, because looking @ single cells , single column.

on new sheet, insert new column d uses vlookup see if row exists on sheet 1:

=vlookup( c1, sheet1!c:c, 1, false)

now give error if row not found, , homecoming row if found.

your new column e (which corresponds old column c) can calculated with:

=not( iserr( d1 ))

hide unused columns required.

excel excel-vba excel-formula excel-2010

Comments

Popular posts from this blog

assembly - What is the addressing mode for ld, add, and rjmp instructions? -

vowpalwabbit - Interpreting Vowpal Wabbit results: Why are some lines appended by "h"? -

Is there a way to convert an HTML page styled with Bootstrap CSS into email-compatible html? -