What formula can be used to share data in 2 sheets
Closed
NKERAGUTABARA
-
Updated on Oct 11, 2017 at 09:53 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - Oct 10, 2017 at 11:15 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - Oct 10, 2017 at 11:15 AM
Hello,
I have two excel sheets A and B having the same columns. there names, dates, figures. not necessarily having the same number of rows, having same names in some cases, in other cases not same names.
i would like to have a formula to compare B to A to track which names in B appear in A and which names in A not appearing in B.
kind regards
I have two excel sheets A and B having the same columns. there names, dates, figures. not necessarily having the same number of rows, having same names in some cases, in other cases not same names.
i would like to have a formula to compare B to A to track which names in B appear in A and which names in A not appearing in B.
kind regards
Related:
- What formula can be used to share data in 2 sheets
- Tentacle locker 2 - Download - Adult games
- Five nights in anime 2 - Download - Adult games
- Share internet from pc to iphone - Guide
- Feeding frenzy 2 download - Download - Arcade
- My cute roommate 2 - Download - Adult games
1 response
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
December 27, 2022
555
Oct 10, 2017 at 11:15 AM
Oct 10, 2017 at 11:15 AM
Hi NKERAGUTABARA,
On sheet A use:
=IF(ISERROR(VLOOKUP(A2,B!$A$2:$A$5,1,0)),"Not found","Found")
On sheet B use:
=IF(ISERROR(VLOOKUP(A2,A!$A$2:$A$5,1,0)),"Not found","Found")
Adjust the bold parts to match the number of rows used.
You can then apply a auto filter to group the results together.
Best regards,
Trowa
On sheet A use:
=IF(ISERROR(VLOOKUP(A2,B!$A$2:$A$5,1,0)),"Not found","Found")
On sheet B use:
=IF(ISERROR(VLOOKUP(A2,A!$A$2:$A$5,1,0)),"Not found","Found")
Adjust the bold parts to match the number of rows used.
You can then apply a auto filter to group the results together.
Best regards,
Trowa