Thread: custom function
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Spencer Hutton[_3_] Spencer Hutton[_3_] is offline
external usenet poster
 
Posts: 17
Default custom function

I have written a simple VBA function:

Function SpenceTAX(Cost, Rate)
SpenceTAX = Cost + (Cost * Rate)
End Function

it adds tax to an items cost. how do i get a description of what the
function does to show up in the function dialog box in execl?