Skip to main content
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
“Aspire to Inspire before we Expire!”

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
“Aspire to Inspire before we Expire!”
d4rlie891
Contributor III
Contributor III
Author

Thank a lot for your Help