mtheriault2000
Well-known Member
- Joined
- Oct 23, 2008
- Messages
- 826
Hello
Learned from user: mikerickson That it is not a good habit to declare variable of the same nature in one line.
http://www.mrexcel.com/forum/showpost.php?p=2872811&postcount=3
I used to declare variable of the same nature like
Mike learned me that in fact, I declare
T1 as variant
T2 as variant
T3 as string
Is there a way to declare same type variables on one line?
Martin
Learned from user: mikerickson That it is not a good habit to declare variable of the same nature in one line.
http://www.mrexcel.com/forum/showpost.php?p=2872811&postcount=3
I used to declare variable of the same nature like
Code:
Dim T1, T2, t3 As string
T1 as variant
T2 as variant
T3 as string
Is there a way to declare same type variables on one line?
Martin