No - you cannot insert parts of fields. You can however insert the relevant
part of the filename with a macro e.g. the following will insert the
filename and path (w/o extension) at the cursor. The second macro will
insert just the filename (w/o extension)
Sub InsertfNameAndPath()
With ActiveDocument
If Len(.Path) = 0 Then .Save
Selection.TypeText Left(.FullName, _
InStrRev(.FullName, ".") - 1)
End With
End Sub
Sub InsertFnameOnly()
With ActiveDocument
If Len(.Path) = 0 Then .Save
Selection.TypeText Left(.name, _
InStrRev(.name, ".") - 1)
End With
End Sub
http://www.gmayor.com/installing_macro.htm
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>