+ Reply to Thread
Results 1 to 5 of 5

Need to get Value from ComboBox Form Control

Hybrid View

pipoliveira Need to get Value from... 06-25-2013, 08:40 AM
AndyLitch Re: Need to get Value from... 06-25-2013, 08:52 AM
pipoliveira Re: Need to get Value from... 06-25-2013, 09:02 AM
pipoliveira Re: Need to get Value from... 06-25-2013, 09:02 AM
AndyLitch Re: Need to get Value from... 06-25-2013, 09:06 AM
  1. #1
    Valued Forum Contributor
    Join Date
    03-29-2013
    Location
    United Kingdom
    MS-Off Ver
    Office/Excel 2013
    Posts
    1,749

    Re: Need to get Value from ComboBox Form Control

    I think you'll find the problem is with the assignation of sname ..
    To prove it you could add
    Msgbox sname
    directly after
    sname = .Shapes("MonthDropDown").ControlFormat.Value
    Elegant Simplicity............. Not Always

  2. #2
    Forum Contributor pipoliveira's Avatar
    Join Date
    08-09-2012
    Location
    Ireland
    MS-Off Ver
    Microsoft Office 365 ProPlus
    Posts
    368

    Re: Need to get Value from ComboBox Form Control

    Hi Andy,

    Thanks for the update.

    I searched some other examples and I found the solution.

    Here's what was missing:

    Private Sub CommandButton1_Click()
    Dim sname As String
    
        If Sheets("Sheet1").Shapes("MonthDropDown").ControlFormat = "" Then
        MsgBox "Please enter the Sheet number!", vbCritical, "No week selected"
        Exit Sub
        End If
            With Sheets("Sheet1").Shapes("MonthDropDown").ControlFormat
                sname = .List(.Value)        End With
            
        Sheets(sname).Range("A19:A45").Value = Sheets("Sheet1").Range("AU19:AU45").Value
          
    End Sub
    Now it works perfectly!

    Thanks a million. Really appreciated.
    Filipe

  3. #3
    Forum Contributor pipoliveira's Avatar
    Join Date
    08-09-2012
    Location
    Ireland
    MS-Off Ver
    Microsoft Office 365 ProPlus
    Posts
    368

    Re: Need to get Value from ComboBox Form Control

    Hi Andy,

    Thanks for the update.

    I searched some other examples and I found the solution.

    Here's what was missing:

    Private Sub CommandButton1_Click()
    Dim sname As String
    
        If Sheets("Sheet1").Shapes("MonthDropDown").ControlFormat = "" Then
        MsgBox "Please enter the Sheet number!", vbCritical, "No week selected"
        Exit Sub
        End If
            With Sheets("Sheet1").Shapes("MonthDropDown").ControlFormat
                sname = .List(.Value)        End With
            
        Sheets(sname).Range("A19:A45").Value = Sheets("Sheet1").Range("AU19:AU45").Value
          
    End Sub
    Now it works perfectly!

    Thanks a million. Really appreciated.
    Filipe

  4. #4
    Valued Forum Contributor
    Join Date
    03-29-2013
    Location
    United Kingdom
    MS-Off Ver
    Office/Excel 2013
    Posts
    1,749

    Re: Need to get Value from ComboBox Form Control

    Nice job!

+ 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