function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Rony57Rony57 

Community Nickname along with string/any Number

Hi Guys,
                  I know that Community Nickname  is  system generated fields and they automatically take values once user record is created. In case of Self registration user.

 I removed the Community Nickname from the Self registration  Community page and i  want to show the community nickname along with some number  automatically generated when user registered in community ? Is It possible?
Phil WeinmeisterPhil Weinmeister
Hi Anurag,

Sure, create two new fields:

1 - Auto Number (e.g., "User_Auto_Number") - For Auto-Number, the format should be {0}.
2 - Formula (Text) (e.g., "User_ID")

In your formula, you would have something like this:

CommunityNickname & User_Auto_Number__c OR
CommunityNickname & " - " & User_Auto_Number__c

Thanks,
Phil