On further reflection, I might know what you're looking for. You might
want declare a module-level variable and use that as your accumulator.
In the code module, before and outside of any procedure, enter
Dim X As Long
Any code in any procedure within this code module can read and change
the value stored in X. The value of X will remain even when a Sub or
Function ends.
So, your code could do something like
Dim X As Long
Sub ABC()
X = 1234
End Sub
Sub DEF()
X = X + 1
End Sub
Here, ABC() sets X to an initial value, 1234, which will be retained
even after ABC terminates. Then, DEF() adds 1 to X and X will retain
that new value after DEF terminates.
If you really do what an Increment function, you could use
Function IncrementX(Optional N As Long = 1) As Long
X = X + N
IncrementX = X
End Function
If N is omitted, X is increment by 1. If N is specified, X gets the
new value X+N. In either case, the function returns the new value of
X.
Using a variable that is declared outside of a procedure is a matter
of what is called the "scope" of the variable. See
www.cpearson.com/Excel/Scope.aspx for more information about scoping
variables and procedures.
Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group, 1998 - 2009
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)