Sub whatever()
on error goto errHandle
do stuff
do stuff
do stuff
exit sub'add this here otherwise you get msg wrongfully
errHandle:
msgbox "An error has occured" & chr(10) & "Please contact ....."
exit sub
end sub
I am trying to make a venn diagram of 3 inner partially overlapping circles; then enclose these 3 with a bigger circle.
I see this as one object with 3 imbedded objects.
I would like to move/enclarge the outer circle such that the inner ones would automatically enlarge.
Is this possible?
I...
Why would one need to use evaluate?
One possible use:
Given 1 or more numbers/objects or operands,
conditionally you may decide to perform a particular
operation like add/subtract/xyz-function depending on for
example on the content of those input parameters,
the logic would know the...
In excel 2000, is there an evaluate-function or
equivalence of subroutine in VBA to do the following:
function myadd(a#, b#)
myadd = a + b
end function
sub test
msgbox EVALUATE("myadd( " & 2.3 & ", " & 2.3 & ")")
end sub
If impossible directly, please share...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.