Hi
Anyone has experience or has any idea why two shared value from two table cannot be joined even after removing all spacing and turning everything into uppercase in the Enrichment? The intersection kept returning 0 even if the shared values are obviously the same from the interim results. Any suggestion is appreciated.
Solved! Go to Solution.
Views
Replies
Total Likes
I have found a solution to my problem. I was using text field to join. It seems like there's a character limit when using text field as index for intersection. What I did was to substring the index text field into only shorter unique text. It's not ideal but it works.
e.g.
substring(Rtrim(Ltrim(Upper(@textfield))),1,12)
Views
Replies
Total Likes
Can you provide some more details? (E.g. screenshot etc.)
Is it standard or custom tables?
Views
Replies
Total Likes
Views
Replies
Total Likes
HI,
in your expression editor use the condition eg : Lower(your value) also use the same Alias name for both activities inside the additional tab.
Views
Replies
Total Likes
Thanks Sumit. I did. I have LTrim, Rtrim and uppercase the value. I found that there's character limit to the text index used for join. I have resolved it by using substring. Let me know if there's better way to do it
Views
Replies
Total Likes
I have found a solution to my problem. I was using text field to join. It seems like there's a character limit when using text field as index for intersection. What I did was to substring the index text field into only shorter unique text. It's not ideal but it works.
e.g.
substring(Rtrim(Ltrim(Upper(@textfield))),1,12)
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies