Hi Everyone
I have a condition where I want to match result if data in source A contains data from source B
Sample as follow
| Data A | Data B | Result |
| ABCD | AB | Match and put out result |
| AB BC | AB B | Match and put out result |
| ABCDF | ABCDFGH | Not match |
| ADH JKL | JKL | Match and put out result |
I have tried to use fuzzy match to solve this issue, however it seems that I need to lower the threshold drastically. As such, some solution that can provide result/do filtering using contain if would be great
Thank you in advance!