+ Reply to Thread
Results 1 to 3 of 3

Range("cell").Select Problem

  1. #1
    CWillis
    Guest

    Range("cell").Select Problem

    The following code no longer works for 11 of my 12 worksheets:

    Sub Testing()
    Sheets(1).Range("A50").Select
    End Sub

    If I record a new macro and select any cell in any sheet, the above code is
    created. (With appropriate sheets and cell names.) The code works as long
    as it stays in the Module it was created in. If I copy and paste the code
    into a worksheet, it gives the error: "Run-time error '1004':
    Application-defined or object-defined error".

    For some reason, If I reference sheet 2 in the above code, the code can be
    placed in any worksheet and it will work. That isn't true for any other
    sheet however.
    Any ideas? Thanks.

  2. #2
    Dave Peterson
    Guest

    Re: Range("cell").Select Problem

    It'll only work when Sheets(1) is the activesheet.

    You can only select a cell on an activesheet.

    Sub Testing()
    sheets(1).select
    Sheets(1).Range("A50").Select
    End Sub

    will fix it.


    CWillis wrote:
    >
    > The following code no longer works for 11 of my 12 worksheets:
    >
    > Sub Testing()
    > Sheets(1).Range("A50").Select
    > End Sub
    >
    > If I record a new macro and select any cell in any sheet, the above code is
    > created. (With appropriate sheets and cell names.) The code works as long
    > as it stays in the Module it was created in. If I copy and paste the code
    > into a worksheet, it gives the error: "Run-time error '1004':
    > Application-defined or object-defined error".
    >
    > For some reason, If I reference sheet 2 in the above code, the code can be
    > placed in any worksheet and it will work. That isn't true for any other
    > sheet however.
    > Any ideas? Thanks.


    --

    Dave Peterson

  3. #3
    CWillis
    Guest

    Re: Range("cell").Select Problem

    Wow. I don't know how I missed that. Thanks.

    "Dave Peterson" wrote:

    > It'll only work when Sheets(1) is the activesheet.
    >
    > You can only select a cell on an activesheet.
    >
    > Sub Testing()
    > sheets(1).select
    > Sheets(1).Range("A50").Select
    > End Sub
    >
    > will fix it.
    >
    >
    > CWillis wrote:
    > >
    > > The following code no longer works for 11 of my 12 worksheets:
    > >
    > > Sub Testing()
    > > Sheets(1).Range("A50").Select
    > > End Sub
    > >
    > > If I record a new macro and select any cell in any sheet, the above code is
    > > created. (With appropriate sheets and cell names.) The code works as long
    > > as it stays in the Module it was created in. If I copy and paste the code
    > > into a worksheet, it gives the error: "Run-time error '1004':
    > > Application-defined or object-defined error".
    > >
    > > For some reason, If I reference sheet 2 in the above code, the code can be
    > > placed in any worksheet and it will work. That isn't true for any other
    > > sheet however.
    > > Any ideas? Thanks.

    >
    > --
    >
    > Dave Peterson
    >


+ 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