+ Reply to Thread
Results 1 to 3 of 3

How do I make a cell into a button that runs a macro?

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    03-24-2007
    Posts
    107

    How do I make a cell into a button that runs a macro?

    I will have 12 tabs. I want to have 12 buttons that will turn on and off these tabs

    Example

    Sub tab1()
    '
    ' tab1 Macro
    '
    
    '
        Sheets("tab1").Select
        Sheets("Sheet3").Visible = True
        Sheets("tab2").Select
        ActiveWindow.SelectedSheets.Visible = False
        Sheets("tab3").Select
        ActiveWindow.SelectedSheets.Visible = False
        Sheets("tab4").Select
        ActiveWindow.SelectedSheets.Visible = False
        Sheets("tab5").Select
        ActiveWindow.SelectedSheets.Visible = False
        Sheets("tab6").Select
        ActiveWindow.SelectedSheets.Visible = False
        Sheets("tab7").Select
        ActiveWindow.SelectedSheets.Visible = False
        Sheets("tab8").Select
        ActiveWindow.SelectedSheets.Visible = False
        Sheets("tab9").Select
        ActiveWindow.SelectedSheets.Visible = False
        Sheets("tab10").Select
        ActiveWindow.SelectedSheets.Visible = False
        Sheets("tab11").Select
        ActiveWindow.SelectedSheets.Visible = False
        Sheets("tab12").Select
        ActiveWindow.SelectedSheets.Visible = False
    End Sub
    By the way, I love this forum. I'm learning a lot. Only yesterday I didn't know how to do anything except record keystrokes. Now I'm writing code.
    Excel 2007

  2. #2
    Registered User
    Join Date
    06-02-2010
    Location
    Grand Rapids, Michigan
    MS-Off Ver
    Excel 2003
    Posts
    64

    Re: How do I make a cell into a button that runs a macro?

    As far as I know you can't actually turn a cell into a button, However you can add command buttons to your spreadsheet and then assign codes to them. If you are using excel 2007 its under the developer tab, click insert and choose a button type from form controls. If you are using 97 to 03 then you will have to add it to your toolbar. If I remember correctly then itsinsert tools and command or something like that.

  3. #3
    Forum Expert pike's Avatar
    Join Date
    12-11-2005
    Location
    Alstonville, Australia
    MS-Off Ver
    2016
    Posts
    5,342

    Re: How do I make a cell into a button that runs a macro?

    maybe use..
    Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
    
    End Sub
    or a clear (no colour) shape over the cell with the macro assigned to it
    If the solution helped please donate to RSPCA

    Site worth visiting: Rabbitohs

+ 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