+ Reply to Thread
Results 1 to 3 of 3

What type of Array is this?

  1. #1
    Forum Contributor
    Join Date
    03-03-2005
    Posts
    316

    Unhappy What type of Array is this?

    The following code returns Variant() as the Array type of Range("a1:a100").

    Sub DetermineArrayType()
    Dim v
    v = Range("a1:e100").value
    Msgbox Typename(v)
    End Sub

    And yet the next code does not recognize the same Range as an array as an error is returned on v = Range("a1:e100").value.

    Sub DetermineArrayType2()
    Dim v(1 To 100, 1 to 5)
    v = Range("a1:e100").value
    Msgbox Typename(v)
    End Sub

    Any explanation?

  2. #2
    Charles Williams
    Guest

    Re: What type of Array is this?

    A variant variable can contain anything, including an array.
    You can also have an array of variants.
    A variant containing an array is not the same thing as an array of variants.

    Your first case is a variant containing an array (this is the correct syntax
    for retrieving data from a range)
    Your second case is an array of variants.

    Charles
    ______________________
    Decision Models
    FastExcel 2.1 now available
    www.DecisionModels.com

    "davidm" <davidm.1rbomc_1119938710.8576@excelforum-nospam.com> wrote in
    message news:davidm.1rbomc_1119938710.8576@excelforum-nospam.com...
    >
    > The following code returns *Variant()* as the Array type of
    > Range("a1:a100").
    >
    > Sub DetermineArrayType()
    > Dim v
    > v = Range("a1:e100").value
    > Msgbox Typename(v)
    > End Sub
    >
    > And yet the next code does not recognize the same Range as an array as
    > an error is returned on *v = Range("a1:e100").value*.
    >
    > Sub DetermineArrayType2()
    > Dim v(1 To 100, 1 to 5)
    > v = Range("a1:e100").value
    > Msgbox Typename(v)
    > End Sub
    >
    > Any explanation?
    >
    >
    > --
    > davidm
    > ------------------------------------------------------------------------
    > davidm's Profile:
    > http://www.excelforum.com/member.php...o&userid=20645
    > View this thread: http://www.excelforum.com/showthread...hreadid=382706
    >




  3. #3
    Forum Contributor
    Join Date
    03-03-2005
    Posts
    316
    Many thanks Charles

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1