+ Reply to Thread
Results 1 to 20 of 20

ComboBox Reference Issue

  1. #1
    Forum Contributor
    Join Date
    06-23-2010
    Location
    Iowa, United States
    MS-Off Ver
    Excel 2007
    Posts
    145

    ComboBox Reference Issue

    Hello,

    So I have been struggling for quite some time with this issue. I tried a forum search, but could not find this problem.

    I have a list of product names in column A under a named range. I have referenced this range in my combobox as such:

    Please Login or Register  to view this content.
    I want to take the product that the user selects from the combobox and make it the active cell. I do not want any cells to be changed. What coding could I use to do that? Thanks!
    Last edited by Steve0492; 06-07-2011 at 02:24 PM.

  2. #2
    Forum Contributor
    Join Date
    06-23-2010
    Location
    Iowa, United States
    MS-Off Ver
    Excel 2007
    Posts
    145

    Re: ComboBox Reference Issue

    An added detail: I hope to execute this task when I press an 'OK' CommandButton I have on my userform. Thanks.

  3. #3
    Valued Forum Contributor Charles's Avatar
    Join Date
    02-10-2004
    Location
    Biloxi
    MS-Off Ver
    Windows 7, Excel 2003,2007 & Mac2011
    Posts
    845

    Re: ComboBox Reference Issue

    Hi,

    A quick answer is to do a "Find" on the selected item in the combo box. You would use a click event for the combobox.
    Charles

    There are other ways to do this, this is but 1 !
    Be Sure you thank those who helped.
    IF YOU'RE SATISFIED BY ANY MEMBERS RESPONSE TO YOUR ISSUE PLEASE USE THE STAR ICON AT THE BOTTOM LEFT OF THE POST UNDER THEIR NAME.

  4. #4
    Forum Contributor
    Join Date
    06-23-2010
    Location
    Iowa, United States
    MS-Off Ver
    Excel 2007
    Posts
    145

    Re: ComboBox Reference Issue

    Yes, that sounds like exactly what I want to do! However, I am unsure of what the exact steps are to do it.
    Last edited by Steve0492; 06-07-2011 at 02:24 PM.

  5. #5
    Valued Forum Contributor Charles's Avatar
    Join Date
    02-10-2004
    Location
    Biloxi
    MS-Off Ver
    Windows 7, Excel 2003,2007 & Mac2011
    Posts
    845

    Re: ComboBox Reference Issue

    Can you attach a copy of your workbook?

  6. #6
    Forum Contributor
    Join Date
    06-23-2010
    Location
    Iowa, United States
    MS-Off Ver
    Excel 2007
    Posts
    145

    Re: ComboBox Reference Issue

    Here is the tab I talked about earlier. The goal of this program is to make the process of changing the status of a product from active to terminated user friendly. The products are in column A are shown in the userform combobox. I essentially want the program to look up the selected item. Later, I will have the userform change the date to the right of the product to the date it was terminated.
    Attached Files Attached Files

  7. #7
    Valued Forum Contributor Charles's Avatar
    Join Date
    02-10-2004
    Location
    Biloxi
    MS-Off Ver
    Windows 7, Excel 2003,2007 & Mac2011
    Posts
    845

    Re: ComboBox Reference Issue

    Hi,

    Just looked ar your workbook and you do not have the "Userform" or code for it. Can you correct the attachment so that it has the Userform and code.

  8. #8
    Forum Contributor
    Join Date
    06-23-2010
    Location
    Iowa, United States
    MS-Off Ver
    Excel 2007
    Posts
    145

    Re: ComboBox Reference Issue

    I am new to VBA and userforms, so I am unsure how to attached the code itself. I do know if you open up VBA within my workbook, the useform is called "KillProduct". If there is something else I can do to help you help me, please let me know. Thanks!

  9. #9
    Valued Forum Contributor Charles's Avatar
    Join Date
    02-10-2004
    Location
    Biloxi
    MS-Off Ver
    Windows 7, Excel 2003,2007 & Mac2011
    Posts
    845

    Re: ComboBox Reference Issue

    HI,

    You can do a Save As for the original workbook and clean the data if its private. Then send it as an attachment.

  10. #10
    Forum Contributor
    Join Date
    06-23-2010
    Location
    Iowa, United States
    MS-Off Ver
    Excel 2007
    Posts
    145

    Re: ComboBox Reference Issue

    Here is the workbook. The userform is not yet referenced in the workbook, it is only in VBA under the name "KillProduct". Let me know if you need me to clarify anything else.
    Attached Files Attached Files

  11. #11
    Valued Forum Contributor Charles's Avatar
    Join Date
    02-10-2004
    Location
    Biloxi
    MS-Off Ver
    Windows 7, Excel 2003,2007 & Mac2011
    Posts
    845

    Re: ComboBox Reference Issue

    Hi,

    I'll have something for you in a short while.

  12. #12
    Forum Contributor
    Join Date
    06-23-2010
    Location
    Iowa, United States
    MS-Off Ver
    Excel 2007
    Posts
    145

    Re: ComboBox Reference Issue

    Thanks a lot Charles

  13. #13
    Valued Forum Contributor Charles's Avatar
    Join Date
    02-10-2004
    Location
    Biloxi
    MS-Off Ver
    Windows 7, Excel 2003,2007 & Mac2011
    Posts
    845

    Re: ComboBox Reference Issue

    Steve0492,

    See attached I coded for the combobox.
    Attached Files Attached Files

  14. #14
    Forum Contributor
    Join Date
    06-23-2010
    Location
    Iowa, United States
    MS-Off Ver
    Excel 2007
    Posts
    145

    Re: ComboBox Reference Issue

    I appreciate your help immensely Charles, the code worked perfectly!

  15. #15
    Forum Contributor
    Join Date
    06-23-2010
    Location
    Iowa, United States
    MS-Off Ver
    Excel 2007
    Posts
    145

    Re: ComboBox Reference Issue

    Hey Charles, or anyone with more knowledge than me, your code works very well, but I am having one issue. I cannot properly enter a new date or modify an old date using the Userform textbox. I think this has something to do with the formatting of the cells. I have tried changing the formatting with no luck. Does anyone have time to look at this? Thanks.

    Steve

  16. #16
    Valued Forum Contributor Charles's Avatar
    Join Date
    02-10-2004
    Location
    Biloxi
    MS-Off Ver
    Windows 7, Excel 2003,2007 & Mac2011
    Posts
    845

    Re: ComboBox Reference Issue

    Steve0492,


    I looked at your workbook and for the userform "Ok" button it does not have any code associate with it. The button I assume is to allow the user to change the Date and then click it. I modified the code for the "Ok" button.
    Attached Files Attached Files

  17. #17
    Forum Contributor
    Join Date
    06-23-2010
    Location
    Iowa, United States
    MS-Off Ver
    Excel 2007
    Posts
    145

    Re: ComboBox Reference Issue

    Thanks Charles,

    Again, the code on your workbook works perfectly. I have double checked that I have it exactly the same on my useform called "KillProduct_MNL", but whenever I try to edit the date within the userform, it does not allow me. Would you mind taking a look? Thanks.

    Steve
    Attached Files Attached Files

  18. #18
    Valued Forum Contributor Charles's Avatar
    Join Date
    02-10-2004
    Location
    Biloxi
    MS-Off Ver
    Windows 7, Excel 2003,2007 & Mac2011
    Posts
    845

    Re: ComboBox Reference Issue

    HI,

    The reason you can not change the "Textbox" because you have a code for it. You need to remove the sub "Private Sub KP_TextBox_Change()"
    When you do this the code for the "Ok" will now change the selected data.

  19. #19
    Forum Contributor
    Join Date
    06-23-2010
    Location
    Iowa, United States
    MS-Off Ver
    Excel 2007
    Posts
    145

    Re: ComboBox Reference Issue

    Got it. That makes sense why it seemed to be constantly refreshing as well. Thanks again!

  20. #20
    Valued Forum Contributor Charles's Avatar
    Join Date
    02-10-2004
    Location
    Biloxi
    MS-Off Ver
    Windows 7, Excel 2003,2007 & Mac2011
    Posts
    845

    Re: ComboBox Reference Issue

    Thanks for letting me know and thanks for the "Reputation".

+ 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