If Names match on different tabs, enter data from 1st tab row/column into second tab.

NGB82KS

Board Regular
Joined
Nov 7, 2019
Messages
82
Office Version
  1. 2016
So I have 2 tabs 'Roster-Export' & 'Breakout'
The 'Roster-Export' tab is a complete listing of users, certifications, dates of completion etc..
The 'Breakout' tab is a bunch of formulas to break out certain info from the roster, surname, firstname, Mi etc...

I need to have a formula check for exact name matches on the 'Roster-Export' tab (Column A) against the 'Breakout' tab, name (Column J), and if there is a match, I need to to fill in (Column K) of the 'Breakout' tab with the text from 'Roster-Export' tab (Column I). Is this possible?

Example:
'Roster-Export' tab; Column A5 = "doe, john"; Column I5 = "20200201"
'Breakout' tab; Column J20 = "doe, john";
Because the names match, Column K of the 'Breakout' tab would display as "20200201".
 
You
=IF( ISERROR(Index('Roster-Export'!I:I,Match('Breakout'!J20,'Roster-Export'!A:A,0))), "NO", IF(Index('Roster-Export'!I:I,Match('Breakout'!J20,'Roster-Export'!A:A,0))="TBD", "NO", "YES"))
Not the best way , as an OR() testing the #N/A still returns #N/A - must be a better way I will Think
OR
=IF( ISNA(Index('Roster-Export'!I:I,Match('Breakout'!J20,'Roster-Export'!A:A,0))), "NO", IF(Index('Roster-Export'!I:I,Match('Breakout'!J20,'Roster-Export'!A:A,0))="TBD", "NO", "YES"))
You and your wizard ball are once again correct. Thank you soooooooo much, this is literally going to save me hundreds of hours. My Roster export is 94812 rows long...! Thank you again!!!!
 
Upvote 0

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
you are very welcome
Not seen a better way yet, BUT other members may possibly reply with alternative
 
Upvote 0

Forum statistics

Threads
1,214,583
Messages
6,120,378
Members
448,955
Latest member
BatCoder

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top