Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default calling a routine to declare variables at start of macro

Hello all,

I have about 40 variables that I currently declare before running
about 5 macros. All of these are the same across the macros because
they set things like column numbers and start and end rows for the
spreadsheets I work with. The macros all reside in the same sheet.
How can I make it so that the variables all sit in one spot and are
referenced by the 5 different macros? Can I write a function that
declares the variables and then call that function in each of my 5
macros? I tried doing that but the macro did not recognize the
variables even after making them Public. Thanks!

Here is some sample code showing the variables I want to share across
the macros:
SP_Index = 3
SP_CA = 4
SP_WP = 5
etc...
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default calling a routine to declare variables at start of macro

I'd create a new module that has this in it:

Option Explicit
Public VarsAreInitialized as Boolean
Public SP_Index as long 'or double or whatever
Public SP_CA as long
....

Sub InitializeVariables()
VarsAreInitialized = true
sp_index = 3
sp_ca = 4
...
End sub

Then in each of the routines that depend on those variables:

Option Explicit
Sub FirstSub()

if varsareinitilized then
'do nothing
else
call initializeVariables
end if

...rest of code
End sub



Michael wrote:

Hello all,

I have about 40 variables that I currently declare before running
about 5 macros. All of these are the same across the macros because
they set things like column numbers and start and end rows for the
spreadsheets I work with. The macros all reside in the same sheet.
How can I make it so that the variables all sit in one spot and are
referenced by the 5 different macros? Can I write a function that
declares the variables and then call that function in each of my 5
macros? I tried doing that but the macro did not recognize the
variables even after making them Public. Thanks!

Here is some sample code showing the variables I want to share across
the macros:
SP_Index = 3
SP_CA = 4
SP_WP = 5
etc...


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default calling a routine to declare variables at start of macro

On Aug 12, 1:52*pm, Dave Peterson wrote:
I'd create a new module that has this in it:

Option Explicit
Public VarsAreInitialized as Boolean
Public SP_Index as long 'or double or whatever
Public SP_CA as long
...

Sub InitializeVariables()
* VarsAreInitialized = true
* sp_index = 3
* sp_ca = 4
* ...
End sub

Then in each of the routines that depend on those variables:

Option Explicit
Sub FirstSub()

* *if varsareinitilized then
* * * 'do nothing
* *else
* * * call initializeVariables
* *end if

* *...rest of code
End sub





Michael wrote:

Hello all,


I have about 40 variables that I currently declare before running
about 5 macros. *All of these are the same across the macros because
they set things like column numbers and start and end rows for the
spreadsheets I work with. *The macros all reside in the same sheet.
How can I make it so that the variables all sit in one spot and are
referenced by the 5 different macros? *Can I write a function that
declares the variables and then call that function in each of my 5
macros? *I tried doing that but the macro did not recognize the
variables even after making them Public. *Thanks!


Here is some sample code showing the variables I want to share across
the macros:
* * SP_Index = 3
* * SP_CA = 4
* * SP_WP = 5
etc...


--

Dave Peterson- Hide quoted text -

- Show quoted text -


that worked great! thanks a bunch!!!
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Declare Variables in Array Mike H. Excel Discussion (Misc queries) 2 March 11th 09 12:33 PM
Declare and Set Public variables jlclyde Excel Discussion (Misc queries) 2 January 28th 09 02:16 PM
DECLARE VARIABLES PROBLEM ytayta555 Excel Programming 7 March 19th 08 03:53 PM
declare multiple variables geebee Excel Programming 2 March 2nd 08 11:34 AM
Calling Macro - Will it take variables? Andibevan[_2_] Excel Programming 3 June 14th 05 03:28 PM


All times are GMT +1. The time now is 10:19 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"