Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
Hi,
Check this
Left(Name,3) & Repeat('*',Len(Name)-3) as New
-Hirish
Hi,
Check this
Left(Name,3) & Repeat('*',Len(Name)-3) as New
-Hirish
Thank a lot for your Help