Imagine you have long list of data and you need to quickly identify which of the items are unique. You can use Advanced Filters to do this.
Just select the list of items you want to filter, go to menu > Data > Filter > Advanced filter. You will see a dialog box like this:

Thats all, when you click ok you will see unique items of the selected list. Quick, aint it?
If you want to see all items, go to menu > Data > Filter > show all.















One Response to “How to compare two Excel sheets using VLOOKUP? [FREE Template]”
Maybe I missed it, but this method doesn't include data from James that isn't contained in Sara's data.
I added a new sheet, and named the ranges for Sara and James.
Maybe something like:
B2: =SORT(UNIQUE(VSTACK(SaraCust, JamesCust)))
C2: =XLOOKUP(B2#,SaraCust,SaraPaid,"Missing")
D2: =XLOOKUP(B2#,JamesCust, JamesPaid,"Missing")
E2: =IF(ISERROR(C2#+D2#),"Missing",IF(C2#=D2#,"Yes","No"))
Then we can still do similar conditional formatting. But this will pull in data missing from Sara's sheet as well.