Friday 16 January 2015

What is the default size of macros programming in one sub procedure

The default size for each sub procedure is 64 KB. We can not change this default size but we can handle the situation by calling procedures from each other. Example

sub one ()



call two



End Sub


sub two()


end sub

No comments:

Post a Comment