to call subfunction from a function

  • Thread starter Thread starter pol
  • Start date Start date
P

pol

Please let me know how I can call subfunction from a function

With thanks
Pol
 
Thanks for the reply
I have a two function

1. itemprice()
2. sizeonly()

I want to call sizeonly() from itemprice

sub itemprice
Here I have to call sizeonly()
end sub

with thanks
Pol
 
Hi

Sub Itemprice()
some code
call sizeonly
continue with more code
End sub

When sizeonly finishes, it will return to the next line in the calling sub.
 
thanks


Roger Govier said:
Hi

Sub Itemprice()
some code
call sizeonly
continue with more code
End sub

When sizeonly finishes, it will return to the next line in the calling sub.
 

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