View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Bob Phillips
 
Posts: n/a
Default how can i call sub or function in vba code

Call mySub

or with parameters

Call mySub(val1, "Text val")

if it is a function

myVal = myFunc(val1)

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"xxx" wrote in message
ups.com...
hi,
i request that how can i call sub or function in vba code

thanks