Matching Data

ithoughtiknewit

New Member
Joined
Feb 11, 2021
Messages
10
Office Version
  1. 365
Platform
  1. MacOS
Hello!

I am trying to take a list I receive from a travel agent and compare it to a list of assignments to see who may not have booked travel. Column A has the travel agent data, and column C has data from our scheduling team. Internally, we don't use middle names, and the formatting is very different. Thoughts on how I can find a match if they booked? Thanks as always!!

Screenshot 2024-02-01 at 2.52.39 PM.png
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
I don't use Excel 365 but can give you the idea -

Steps within LET function
  1. Use TextAfter to extract name after period, and
  2. TextBefore to extract name before "/"
  3. Textjoin the above 2
  4. Use the result to search using XLOOKUP or as per the data set
It shall look something like -

=LET(A,Textafter(),B,Textbefore(),C,Textjoin(" ",A,B),XLOOKUP(C,...))
 
Upvote 1

Forum statistics

Threads
1,215,758
Messages
6,126,709
Members
449,331
Latest member
smckenzie2016

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