Forum Discussion
ExcelLearner2395
May 27, 2021Copper Contributor
Finding data not on a list
Hi guys, I'm using Windows 10 and Office 365. I'm looking to try and find all the date that is not on a different list. I have 2 lists of names, 1 which is split into First and Surname (say c...
PeterBartholomew1
May 27, 2021Silver Contributor
I have just seen the requirement to split the names
= LET(
space, SEARCH(" ", Name),
fName, LEFT(Name, space-1),
sName, MID(Name, space+1,10),
found, COUNTIFS(First, fName, Last, sName),
table, IF({1,0}, fName, sName),
FILTER(table, NOT(found)))SergeiBaklan
May 27, 2021Diamond Contributor
The only point is to make a guess what is the Name, First etc here. In particular same size ranges or not, do you think that's obvious for everyone?