Get the file name from attachment field

I wanted to get the Fila Name from an “attachment field”, so I came up with this formula for a “Text” type column (VC).

Basically, if you use [Attachment] only it will come up as: "Attachments_Files_/The file name

I wanted to have just the file name, so I used this formula (Note: “Attachments_Files_/”= 19 Characters):

RIGHT([Attachment],LEN([Attachment]&"")-19)

4 2 260
2 REPLIES 2

INDEX() and SPLIT() is another option here.

INDEX( SPLIT( [Attachment] , “/” ) , 2 )


Top Labels in this Space