+ Reply to Thread
Results 1 to 5 of 5

Form Button - Select Row

  1. #1
    Paul Brown
    Guest

    Form Button - Select Row

    Hello all,

    I'm looking to create a macro which will run from a Form Button. Form
    buttons will be located at the end of each row. How can I make the form
    button select the cells in the row that the form button is on? For example
    if the active cell is c12 and I press the form button at the end of row 5
    the macro runs fine but it runs on the data in row 12 rather than row 5
    (basically it copies that data and moves it somewhere else).

    Any help appreciated.

    Paul.



  2. #2
    Ron de Bruin
    Guest

    Re: Form Button - Select Row

    You can try this

    Sub Button1_Click()
    Dim rw As Long
    rw = Range(ActiveSheet.Shapes(Application.Caller).TopLeftCell.Address).Row
    Range(Cells(rw, "A"), Cells(rw, "D")).Select
    End Sub


    --
    Regards Ron de Bruin
    http://www.rondebruin.nl


    "Paul Brown" <paul.brown25@ntlworld.com> wrote in message news:oB7Af.51041$zt1.27979@newsfe5-gui.ntli.net...
    > Hello all,
    >
    > I'm looking to create a macro which will run from a Form Button. Form buttons will be located at the end of each row. How can I
    > make the form button select the cells in the row that the form button is on? For example if the active cell is c12 and I press the
    > form button at the end of row 5 the macro runs fine but it runs on the data in row 12 rather than row 5 (basically it copies that
    > data and moves it somewhere else).
    >
    > Any help appreciated.
    >
    > Paul.
    >




  3. #3
    Paul Brown
    Guest

    Re: Form Button - Select Row

    Thanks Ron,

    Exactly what I was looking for - works a treat.

    Paul.

    "Ron de Bruin" <rondebruin@kabelfoon.nl> wrote in message
    news:%237p6xqdHGHA.3120@TK2MSFTNGP10.phx.gbl...
    > You can try this
    >
    > Sub Button1_Click()
    > Dim rw As Long
    > rw =
    > Range(ActiveSheet.Shapes(Application.Caller).TopLeftCell.Address).Row
    > Range(Cells(rw, "A"), Cells(rw, "D")).Select
    > End Sub
    >
    >
    > --
    > Regards Ron de Bruin
    > http://www.rondebruin.nl
    >
    >
    > "Paul Brown" <paul.brown25@ntlworld.com> wrote in message
    > news:oB7Af.51041$zt1.27979@newsfe5-gui.ntli.net...
    >> Hello all,
    >>
    >> I'm looking to create a macro which will run from a Form Button. Form
    >> buttons will be located at the end of each row. How can I make the form
    >> button select the cells in the row that the form button is on? For
    >> example if the active cell is c12 and I press the form button at the end
    >> of row 5 the macro runs fine but it runs on the data in row 12 rather
    >> than row 5 (basically it copies that data and moves it somewhere else).
    >>
    >> Any help appreciated.
    >>
    >> Paul.
    >>

    >
    >




  4. #4
    Valued Forum Contributor tony h's Avatar
    Join Date
    03-14-2005
    Location
    England: London and Lincolnshire
    Posts
    1,187
    Sub button1_click()
    Dim shp As Shape
    Dim rng As Range

    Set shp = ActiveSheet.Shapes(Application.Caller)

    Set rng = shp.BottomRightCell.EntireRow
    rng.Select




    End Sub

    run from the click event

  5. #5
    Paul Brown
    Guest

    Re: Form Button - Select Row

    Thanks Tony.

    Paul.

    "tony h" <tony.h.21xynn_1137774324.4297@excelforum-nospam.com> wrote in
    message news:tony.h.21xynn_1137774324.4297@excelforum-nospam.com...
    >
    > Sub button1_click()
    > Dim shp As Shape
    > Dim rng As Range
    >
    > Set shp = ActiveSheet.Shapes(Application.Caller)
    >
    > Set rng = shp.BottomRightCell.EntireRow
    > rng.Select
    >
    >
    >
    >
    > End Sub
    >
    > run from the click event
    >
    >
    > --
    > tony h
    > ------------------------------------------------------------------------
    > tony h's Profile:
    > http://www.excelforum.com/member.php...o&userid=21074
    > View this thread: http://www.excelforum.com/showthread...hreadid=503367
    >




+ 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