April 2006
Beginner
1114 pages
98h 16m
English
workbook.RoutingSlip
Returns the workbook’s RoutingSlip object. Use HasRoutingSlip to create a routing slip and to determine if a workbook has a routing slip. The following code creates a routing slip and routes a workbook:
ThisWorkbook.HasRoutingSlip = True
With ThisWorkbook.RoutingSlip
.Recipients = Array("Beige Bond", "Jeff Webb")
.Message = "For your review"
.Subject = "New budget"
.Delivery = xlOneAfterAnother
End With
ThisWorkbook.RouteRead now
Unlock full access