Skip to main content
답변 1개
  1. 2025년 3월 19일 오전 10:28

    Hi, @Gruyeah Kpahn

     

    Also too, you can use approach with Custom Formula field.  

    For example,  

     

    Create Formula field on the Contact object.

    Hi, Also too, you can use approach with Custom Formula field. For example, Create Formula field on the Contact object.Formula:LastName &Formula:

    LastName & " " & UPPER(LEFT(FirstName, 1)) & "." & UPPER(LEFT(MiddleName, 1)) & "."

    Since we plan to use this field only in the Report, we don't need to add it to the Page Layout.

     

     

    Also, this formula can be improved by adding checks to ensure that all fields are filled in so that nothing is added if they are empty:

    LastName & IF(ISBLANK(FirstName), "", " " & UPPER(LEFT(FirstName, 1)) & ".") & IF(ISBLANK(MiddleName), "", UPPER(LEFT(MiddleName, 1)) & ".")

    Result:2.jpgSincerely, 

    Mykhailo Vdovychenko 

    Bringing Cloud Excellence with IBVCLOUD OÜ

0/9000