It is almost weekend. I am sure most of you have plans (if you are USA, wish you happy 4th of July). As for me, I am going on a 80KM (50 mile) bicycle trip to a nearby lake to watch birds on Saturday morning. On Sunday, we (kids & I) are planning to make a scrapbook from our Australian vacation experiences.
So let me keep this nice & simple.
What is the coolest thing you made with Excel?
Go ahead and share your answers in the comments area.
PS: In case you are not able to watch fireworks on 4th of July, here is 4thofjulyfireworks.xlsm for you.
PPS: If you want to showcase your coolest Excel thing on Chandoo.org blog, please indicate so in the comments.













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.