Declaring variables: VB.NET Vs. VBA?

JRCHAPMAN

New Member
Joined
Aug 6, 2018
Messages
4
In VB.NET, a variable is declared using the syntax

Code:
Dim Foo As Integer = 10

I have just discovered that in VBA this does not work, and must instead be written as either

Code:
Dim Foo As Integer
Foo = 10

or as

Code:
Foo = 10

Is the second of these an acceptable way of declaring a variable? If not, what problems might be encountered if the datatype is not specified?
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Foo isn't an integer in the second, it's a variant. This is the same as not declaring your variables and all the pitfalls that come along with it.
 
Upvote 0
Speaking of this same thing,

I have a function
Function addOne(i as int) as int
AddOne = i+1
End Function

In sub
Dim j as int
j=addOne(j)

Error. Type mismatch. Why would this happen?
 
Upvote 0

Forum statistics

Threads
1,214,883
Messages
6,122,077
Members
449,064
Latest member
MattDRT

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top