custom function

  • Thread starter Thread starter Spencer Hutton
  • Start date Start date
S

Spencer Hutton

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?
 
go to the object browser in the VBE

find you function in the browser

right click on it and select properties

enter a description.

Close the object browser.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top