+ Reply to Thread
Results 1 to 2 of 2

Adding a collection to a wksht

  1. #1
    CLamar
    Guest

    Adding a collection to a wksht

    I have a collection that I created. I am trying to take that collection and
    copy it to another worksheet starting at Cell A1. How can this be done, or
    should I use another method other than a collection

    Thanks
    Clamar

  2. #2
    Chip Pearson
    Guest

    Re: Adding a collection to a wksht

    You can just loop through the collection.


    For N = 1 To Coll.Count
    Cells(N, 1).Value = Coll(N)
    Next N

    where Coll is your collection object.

    --
    Cordially,
    Chip Pearson
    Microsoft MVP - Excel
    Pearson Software Consulting, LLC
    www.cpearson.com


    "CLamar" <CLamar@discussions.microsoft.com> wrote in message
    news:B8C3A9BD-BFEC-4390-ACFC-8F323AD4BB81@microsoft.com...
    >I have a collection that I created. I am trying to take that
    >collection and
    > copy it to another worksheet starting at Cell A1. How can this
    > be done, or
    > should I use another method other than a collection
    >
    > Thanks
    > Clamar




+ 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