Dear @Julieta Bowyer,
Thank you for posting your question in the Microsoft Q&A forum.
Could you please let me know how you would like to bulk-change the "File as" field in your Outlook contacts? I have found a sample where the string is changed to the first name followed by a space and then the last name. You can try this as a reference.
In Outlook, press Alt + F11 to open the Microsoft Visual Basic for Applications window.
Select Insert, and then click Module.
Paste the code.
Private Sub ReFileContacts()
Dim items As items, item As ContactItem, folder As folder
Dim contactItems As Outlook.items
Dim itemContact As Outlook.ContactItem
Set folder = Session.GetDefaultFolder(olFolderContacts)
Set items = folder.items
Count = items.Count
If Count = 0 Then
MsgBox "Nothing to do!"
Exit Sub
End If
'Filter on the message class to obtain only contact items in the folder
Set contactItems = items.Restrict("[MessageClass]='IPM.Contact'")
For Each itemContact In contactItems
itemContact.FileAs = itemContact.FirstName + " " + itemContact.LastName
itemContact.Save
Next
MsgBox "Your contacts have been re-filed."
End Sub
Then click Run.
Reference: Programmatically Change the Display Format for All Contacts | Microsoft Learn
What format would you like to set the "File as" field to? Please reply to this email so I can assist you better.
Looking forward to your response!
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.