Reset Method
Resets the routing slip so that a new routing can be initiated with the same slip (using the same recipient list and delivery information). The routing must be completed before you use this method. Using this method at other times causes an error.
expression.Reset
expression Required. An expression that returns a RoutingSlip object.
Example
This example resets the routing slip for Book1.xls if routing has been completed.
With Workbooks("BOOK1.XLS").RoutingSlip
If .Status = xlRoutingComplete Then
.Reset
Else
MsgBox "Cannot reset routing; not yet complete"
End If
End With