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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
d4rlie891
Contributor III
Contributor III

change name to *

Hi,

I want to change the Name start from the 4th Char with *, is there any way to do that?

for Example :

Name :MICHAEL JACKSON

New Name : MIC************

Thanks

1 Solution

Accepted Solutions
HirisH_V7
Master
Master

Hi,

Check this

Left(Name,3) & Repeat('*',Len(Name)-3) as New

Name Replace -241638.PNG

-Hirish

HirisH

View solution in original post

2 Replies
HirisH_V7
Master
Master

Hi,

Check this

Left(Name,3) & Repeat('*',Len(Name)-3) as New

Name Replace -241638.PNG

-Hirish

HirisH
d4rlie891
Contributor III
Contributor III
Author

Thank a lot for your Help