Matching 2 columns in Excel
Solved/Closed
Related:
- Matching 2 columns in Excel
- Tentacle locker 2 - Download - Adult games
- Five nights in anime 2 - Download - Adult games
- Feeding frenzy 2 download - Download - Arcade
- Euro truck simulator 2 download free full version pc - Download - Simulation
- Resident evil 2 remake free download - Download - Horror
2 responses
rizvisa1
Posts
4478
Registration date
Thursday January 28, 2010
Status
Contributor
Last seen
May 5, 2022
766
Aug 2, 2010 at 10:56 AM
Aug 2, 2010 at 10:56 AM
use match function
=IF(ISERROR(MATCH(A2, B:B, 0)), "", MATCH(A2, B:B, 0))
It will show the row number of B where there is a match
If you want to see cell address you can try
=IF(ISERROR(MATCH(A2, B:B, 0)), "", "B" & MATCH(A2, B:B, 0))
=IF(ISERROR(MATCH(A2, B:B, 0)), "", MATCH(A2, B:B, 0))
It will show the row number of B where there is a match
If you want to see cell address you can try
=IF(ISERROR(MATCH(A2, B:B, 0)), "", "B" & MATCH(A2, B:B, 0))