Generating nicknames

in this i filtered a table but struggling in creating nickname

@Venkatraman

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 :slight_smile:
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