Hi Team,
I have a requirement where I have a file with apprx 40K+ keywords. Now I need to compare these key words with one of my data column in a table to do a pattern matching kind of thing and flag as yes if matched. Let me illustrate with an example below:
keywords :
china
cn
india
in
ind
calpe
wil
tocina
.... (This list goes upto 40K+)
My Customer_Data Table:
Bank of India
indusland bank
Bank of baroda
Tocinas commercial bank
Bank of good will
State Bank of India
Bank of America
.... (This list goes upto 10K+)
Expected Output:
Customer_Data Matches?
Bank of India Y (This has india keyword)
indusland bank Y (This has ind keyword)
Bank of baroda N (This doesn't match any keyword)
Tocinas commercial bank Y (This has tocina keyword)
Bank of good will Y (This has wil keyword)
State Bank of India Y (This has india keyword)
Bank of America N (This doesn't match any keyword)
Hope the above illustration helps. I cant upload the data due to restrictions in my org. Please bear with that.
Any help is much appreciated
Thanks & Regards
Dilver
Solved! Go to Solution.
Hey @Dilver_Shaik, the Find Replace tool is perfect for this situation. You first just need your customer data and keywords in two tables:
Then you'd set the tool up like this. Given your example, you'll want to use a case insensitive search anywhere in the field:
Then finally, we can handle the flagging and processing of the keyword label field like so with a couple of Formula expressions:
Workflow attached. Hope this helps you out!
Thanks @DataNath - It suits my requirement