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 total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
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,095
Messages
6,123,072
Members
449,093
Latest member
ripvw

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