+ Reply to Thread
Results 1 to 3 of 3

programatically selecting columns to import text into

  1. #1
    ScottM
    Guest

    programatically selecting columns to import text into

    Hi,

    I am writing a macro to import multiple text files into a spreadsheet. The
    only part I haven't figured out is how to step sideways, i.e the first text
    file should use A1 as its origin, the second file C1, the third E1 and so
    on.

    Range(A1).Select
    Range(C1).Select
    Range(E1).Select


    /Scott



  2. #2
    Gord Dibben
    Guest

    Re: programatically selecting columns to import text into

    Scott

    Use Offset(rownum, columnnum) to move the activecell.

    ActiveCell.Offset(0, 2).Select

    Rarely necessary to select anything.

    Example........Instead of

    Dim actSht As Worksheet
    Set actSht = ActiveSheet
    Worksheets("Sheet2").Activate
    Range("A1:J10").Select
    Selection.Copy
    actSht.Activate
    Range("K43").Select
    ActiveSheet.Paste

    use

    Worksheets("Sheet2").Range("A1:J10").Copy _
    Destination:=ActiveSheet.Range("K43")


    Gord Dibben Excel MVP

    On Thu, 24 Nov 2005 15:19:48 -0500, "ScottM"
    <scott.murchison@psionteklogix.com> wrote:

    >Hi,
    >
    >I am writing a macro to import multiple text files into a spreadsheet. The
    >only part I haven't figured out is how to step sideways, i.e the first text
    >file should use A1 as its origin, the second file C1, the third E1 and so
    >on.
    >
    >Range(A1).Select
    >Range(C1).Select
    >Range(E1).Select
    >
    >
    >/Scott
    >



  3. #3
    ScottM
    Guest

    Re: programatically selecting columns to import text into

    Thanks for the feedback.

    Scott


    "Gord Dibben" <gorddibbATshawDOTca> wrote in message
    news:nuaco1957e09m2pcvb4d72tkgiv5je7tdq@4ax.com...
    > Scott
    >
    > Use Offset(rownum, columnnum) to move the activecell.
    >
    > ActiveCell.Offset(0, 2).Select
    >
    > Rarely necessary to select anything.
    >
    > Example........Instead of
    >
    > Dim actSht As Worksheet
    > Set actSht = ActiveSheet
    > Worksheets("Sheet2").Activate
    > Range("A1:J10").Select
    > Selection.Copy
    > actSht.Activate
    > Range("K43").Select
    > ActiveSheet.Paste
    >
    > use
    >
    > Worksheets("Sheet2").Range("A1:J10").Copy _
    > Destination:=ActiveSheet.Range("K43")
    >
    >
    > Gord Dibben Excel MVP
    >
    > On Thu, 24 Nov 2005 15:19:48 -0500, "ScottM"
    > <scott.murchison@psionteklogix.com> wrote:
    >
    >>Hi,
    >>
    >>I am writing a macro to import multiple text files into a spreadsheet. The
    >>only part I haven't figured out is how to step sideways, i.e the first
    >>text
    >>file should use A1 as its origin, the second file C1, the third E1 and so
    >>on.
    >>
    >>Range(A1).Select
    >>Range(C1).Select
    >>Range(E1).Select
    >>
    >>
    >>/Scott
    >>

    >




+ 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