I guess you should save via a macro:
Sub SaveActiveWBookAsXPS()
Dim WBName As String
Dim DotPos As Integer
WBName = ActiveWorkbook.Name
DotPos = InStrRev(WBName, ".")
If DotPos > 0 Then WBName = Left(WBName, DotPos - 1)
ActiveSheet.ExportAsFixedFormat Type:=xlTypeXPS, Filename:="C:\" &
WBName, _
Quality:=xlQualityStandard, IncludeDocProperties:=True,
IgnorePrintAreas _
:=False, OpenAfterPublish:=False
End Sub

Signature
Jim
| Hi there:
|
[quoted text clipped - 5 lines]
| Much Appreciated,
| David