Results 1 to 4 of 4

Combining two codes into one

Threaded View

  1. #1
    Registered User
    Join Date
    11-08-2017
    Location
    Lithuania
    MS-Off Ver
    2010
    Posts
    2

    Question Combining two codes into one

    Hello,

    I am a beginner at Excel VBA, so sorry for stupid questions... I am still learning

    I have two different codes. They each work correctly, but I want to combine them into one, to do a bit different task.

    This code creates Buttons "Green", and when you press it, it opens window with information, on which row that button is.

    Sub CreateButtons()
    
        Dim i As Long
        Dim shp As Object
        Dim dblLeft As Double
        Dim dblTop As Double
        Dim dblWidth As Double
        Dim dblHeight As Double
            
        With Sheets("Sheet1")
            dblLeft = .Columns("V:V").Left      'All buttons have same Left position
            dblWidth = .Columns("V:V").Width    'All buttons have same Width
            For i = 2 To 20                     'Starts on row 2 and finishes row 20
                dblHeight = .Rows(i).Height     'Set Height to height of row
                dblTop = .Rows(i).Top           'Set Top top of row
                Set shp = .Buttons.Add(dblLeft, dblTop, dblWidth, dblHeight)
                shp.OnAction = "IdentifySelected"
                shp.Characters.Text = "Green"
            Next i
        End With
       
    End Sub
    Second code is for changing color of the row. I assign it to the button. And then row color changes to green or back to normal, by the push of that button.

    Sub GREEN()
    Select Case Range("B2:G2,O2:R2,T2:U2").Interior.ColorIndex
        Case xlNone
            Range("B2:G2,O2:R2,T2:U2").Interior.ColorIndex = 43
        Case Else
            Range("B2:G2,O2:R2,T2:U2").Interior.ColorIndex = xlNone
        End Select
    End Sub
    The problem is, that I need button for every row. And I have around 1000 rows...
    So, could you please help me to combine these two codes into one?
    I need that every row would have a button, and that row color could be changed by pressing that button. Also, from the first code, I dont need tat it would pop up a window with row number information.


    Thanks in advance
    Last edited by Richard Buttrey; 11-08-2017 at 12:20 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Combining 2 codes into 1.
    By mullet40 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 11-08-2016, 01:31 PM
  2. Call Two Codes from ComboBox
    By zplugger in forum Excel General
    Replies: 2
    Last Post: 01-24-2015, 03:02 PM
  3. combining two vba codes into one
    By Ironman in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 10-16-2013, 01:52 AM
  4. Combining vba codes makes the previous codes broken !
    By MDPLUS in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-26-2013, 10:00 AM
  5. [SOLVED] Combining 2 codes?
    By bjcowen9000 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 02-19-2013, 02:48 PM
  6. combining codes
    By tweety127 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 01-18-2008, 06:48 PM
  7. [SOLVED] combining 2 codes
    By steve in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-18-2006, 01:15 PM

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