Michael Halvorson, on page 284 of the referenced text, gives the following example of a procedure in a standard module to hold a function declaration.
To wit:
Function Rate (Hits, Attempts) As String
Percent = Hits / Attempts
Rate = Format(Percent, "0.0%")
End Function
On the...