Forum Discussion
Return value based on matching text
If names are not matched that is mix of automatic work (any lookup function) and manual corrections where lookup found nothing.
Alternatively Fuzzy Match in Power Query (or perhaps add-in) could be used, but with it also no warranty everything will be found.
Thanks SergeiBaklan , any way to match two text based on two or more identical words in both texts, for example, I like drinking coffee, and 2nd text I'm drinking coffee every night, the matching here based on two identical words drinking & coffee, and so o
- SergeiBaklanJan 11, 2022Diamond Contributor
Not sure. Without predefined words we need to split each text on array of words; exclude from it "a", "the", "and", etc.; exclude characters like "," and "!"; compare lookup array with lookup array of arrays; find row with two or more matches; based on its position return some value.
If possible that's not easy task.
- Khalil600Jan 11, 2022Copper ContributorThanks SergeiBaklan, appreciated your reply.