to call subfunction from a function

P

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
 
R

Roger Govier

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.
 
P

pol

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.
 
Top