HI,
What is the easiest workflow to do exact match and contains keyword? (Multiple combination)
I have a data table :
a lookup table :
| L_Process | Keyword |
| a | Team |
| a | capture |
| a | Training |
| b | Aspx |
| b | training |
| c | team |
| d | prof% |
| e | %20 |
And I require the following output based on the below Condition:
Find the exact Match in the Lookup table(Process = L_Process)
If the process matched then compare the matched L_Process keywords with URL( URL = contains(keyword))
Else Null()
Can anyone advise, please?
Many thanks!