Sunday, October 7, 2012

What Is the difference between Dim and ReDim Statements in VBA

How to use Dim and ReDim Statements in VBA
Dim Statement:
Variables declared with Dim at the script level are available to all procedures within the script. At the procedure level, variables are available only within the procedure
Syntax:
Dim VarName[([subscripts])]
[, VarName[([subscripts])]] .. 

You can also use the Dim statement with empty parentheses to declare a dynamic array. After declaring a dynamic array, use the ReDim statement within a procedure to define the number of dimensions and elements in the array. If you try to redeclare a dimension for an array variable whose size was explicitly specified in a Dim statement, an error occurs.
Eg:
Dim x as Integer 
 'Declaring a Variable  or Array
Dim y(10) as String

ReDim Statement :
Used to declare the dynamic-array variables, allocates or reallocates storage space at procedure level.
Syntax:
ReDim [Preserve] VarName(subscripts) 
[, VarName(subscripts)] . . .

The ReDim statement is used to size or resize a dynamic array that has already been formally declared using a Private, Public, or Dim statement with empty parentheses (without dimension subscripts). You can use the ReDim statement repeatedly to change the number of elements and dimensions in an array.
Eg:
Dim x As String
Dim y ()  As String

ReDim y(20)          
‘ReSizing or Reinitialization of Array Size /Variable Value
ReDim x =" TPR"

If you use the Preserve keyword, you can resize only the last array dimension, and you can't change the number of dimensions at all. For example, if your array has only one dimension, you can resize that dimension because it is the last and only dimension. However, if your array has two or more dimensions, you can change the size of only the last dimension and still preserve the contents of the array.

The following example shows how you can increase the size of the last dimension of a dynamic array without erasing any existing data contained in the array.

ReDim X(20, 20, 20)
. . .
ReDim Preserve X(20, 20, 25)

Caution : 
If you make an array smaller than it was originally, data in the eliminated elements is lost.

--------------------------------------------------------------------------------------------------------
Thanks, TAMATAM ; Business Intelligence & Analytics Professional
--------------------------------------------------------------------------------------------------------

No comments:

Post a Comment

Hi User, Thank You for visiting My Blog. Please post your genuine Feedback or comments only related to this Blog Posts. Please do not post any Spam comments or Advertising kind of comments which will be Ignored.

Featured Post from this Blog

How to compare Current Snapshot Data with Previous Snapshot in Power BI

How to Dynamically compare two Snapshots Data in Power BI Scenario: Suppose, we have a sample Sales data, which is stored with Monthly Snaps...

Popular Posts from this Blog