I am having the name of the person in one of the field of the document. This field is of type Text-Computed. The field will alwaya have the name of the person in the common name format.
I want to get this name in the Abbreviated name format. For that I am using the below code.
Dim nam As NotesName
Set nam = New NotesName(doc.BetaTester(0))
Dim namabb As String
namabb=nam.Abbreviated
Msgbox namabb
but this peice of code is returning me the common name format which is already present in the field Beta Tester.
How can I get this name in the Abbreviated format.
I tried below formula code also…But it didnt work.