Jan 14, 2002 #1 gcole Programmer Aug 2, 2000 390 US I have a dynamic array with mixed data types. When I load a value it rounds up. How can I avoid this?
I have a dynamic array with mixed data types. When I load a value it rounds up. How can I avoid this?
Jan 14, 2002 #2 S SkipVought Programmer Dec 4, 2001 47,487 US Hi, Dim you array as Variant. Code: Dim vMyArray() [As Variant] Since Variant is the default, the "As Variant" is optional. Skip, metzgsk@voughtaircraft.com Upvote 0 Downvote
Hi, Dim you array as Variant. Code: Dim vMyArray() [As Variant] Since Variant is the default, the "As Variant" is optional. Skip, metzgsk@voughtaircraft.com