Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

[resolved] Transform all uppercase characters into lowercase characters

Hi. Is it somehow possible for all uppercase characters within the string to make lowercase characters? I have list of email addresses which I need to deduplicate. I was trying to manage this using data quality tool but the problem is that the tool identifies for example 'j.smith@yahoo.com' and 'J.Smith@yahoo.com' as distinct values while they are actually duplicates. The ignore case function in DQ tool doesnt work for me either (dont know why).. so I was thinking if this could be somehow managed using DI? Many thanks for any suggestions

Labels (2)
1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Well that was the point to ask if this is possible using DI? 0683p000009MACn.png And it is, thank you it works great. I did it in expression builder using function StringHandling.DOWNCASE()

View solution in original post

2 Replies
Anonymous
Not applicable
Author

You've posted this in Data Integration not DQ.
If it was DI, then you could say: -

row1.eMail == null ? null : row1.eMail.toLowerCase()
Anonymous
Not applicable
Author

Well that was the point to ask if this is possible using DI? 0683p000009MACn.png And it is, thank you it works great. I did it in expression builder using function StringHandling.DOWNCASE()