View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
bookman3 bookman3 is offline
external usenet poster
 
Posts: 25
Default Make Custom Macro always Available

I have created the following simple custom macro below and saved it in a
module.
How do I make it always available for any workbook?

Function Between(a As Integer, b As Integer, c As Integer)
If a = b And a <= c Then
Between = True
Else
Between = False
End If
End Function
--
bookman