Let me know what kind of issues you’re facing.
What function to be used for creating name with first 3 letters of first and last names
Hi @Venkatraman
You can try this
First Name=“Farhan”
Last Name=“Khan”
Result=First Name.Substring(0,3).ToUpper +" "+Last Name.Substring(0,3).ToLower
Best Regards
Farhan
1 Like
Thank u bro