+ Reply to Thread
Results 1 to 26 of 26

For Loop Combo Boxes with If Statement

  1. #1
    Registered User
    Join Date
    02-15-2015
    Location
    London
    MS-Off Ver
    2010
    Posts
    27

    For Loop Combo Boxes with If Statement

    Hi, I am a beginner to VBA looking for some help with a For Loop

    I have a Userform with 18 Comboboxes named mid1, mid2, mid3 etc which would hold an item description and then 18 textboxes named mia1, mia2, mia3 etc which would hold corresponding currency amount (There are other textboxes on the userform as well)

    On Userform Activate, I am trying to disable a mia textbox if the corresponding mid combobox is empty.

    eg if mid3 is empty then mia3 needs to be Disabled.

    This is what I have got so far:


    Please Login or Register  to view this content.
    I keep getting a compile error when i is set to 1, where am I going wrong.

    Also is a for loop the best way to achieve this?

    Many thanks for all help.
    Last edited by bssm; 02-21-2015 at 07:52 PM.

  2. #2
    Forum Expert
    Join Date
    07-31-2010
    Location
    California
    MS-Off Ver
    Excel 2007
    Posts
    4,070

    Re: For Loop Combo Boxes with If Statement

    Your approach is a little off. You can simply loop through each control, by number, and if said combobox is empty then disable the corresponding textbox. With that being said, I am not sure it is going to work the way you want it to.

    Please Login or Register  to view this content.

  3. #3
    Registered User
    Join Date
    04-14-2010
    Location
    NZ
    MS-Off Ver
    2007,2010
    Posts
    86

    Re: For Loop Combo Boxes with If Statement

    Set the default of the enabled flag for the the relevant textboxes in the properties window to false, then you can enable them as necessary later on.

    Please Login or Register  to view this content.

  4. #4
    Registered User
    Join Date
    02-15-2015
    Location
    London
    MS-Off Ver
    2010
    Posts
    27

    Re: For Loop Combo Boxes with If Statement

    Thanks so much both of you

    How would I use this code so that it would always be running when I am in the userform.

    For example if I entered text in mid1 which would enable mia1, then before exiting the userform deleted the text in mid1, mia1 would still be enabled.

    Currently i Have the following for each mid box

    Please Login or Register  to view this content.
    Last edited by bssm; 02-21-2015 at 08:39 PM.

  5. #5
    Registered User
    Join Date
    04-14-2010
    Location
    NZ
    MS-Off Ver
    2007,2010
    Posts
    86

    Re: For Loop Combo Boxes with If Statement

    Add an Else to the if statement within the Combobox_Change event like so:

    Please Login or Register  to view this content.

  6. #6
    Registered User
    Join Date
    02-15-2015
    Location
    London
    MS-Off Ver
    2010
    Posts
    27

    Re: For Loop Combo Boxes with If Statement

    I mean so instead having the code for each box change

    in theory something like if Userform_Active? Or Any"mid" combobox_Change

    I am planning on having 50 boxes and trying to avoid having 50 Combobox_Change


    sorry if not making much sense I am new to this.
    Last edited by bssm; 02-21-2015 at 09:06 PM.

  7. #7
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: For Loop Combo Boxes with If Statement

    Are all the comboboxes identical?
    If posting code please use code tags, see here.

  8. #8
    Registered User
    Join Date
    04-14-2010
    Location
    NZ
    MS-Off Ver
    2007,2010
    Posts
    86

    Re: For Loop Combo Boxes with If Statement

    hmm, I'm not sure if what you're trying is possible without utilising the individual change events.

    Do you need 50 comboboxes?

    The change events could be shortened to 1 line, and then do the checking in a separate procedure..
    Please Login or Register  to view this content.
    Last edited by Deamo; 02-21-2015 at 09:56 PM. Reason: code correction

  9. #9
    Registered User
    Join Date
    02-15-2015
    Location
    London
    MS-Off Ver
    2010
    Posts
    27

    Re: For Loop Combo Boxes with If Statement

    Yes they are

    Edit - That solution looks a lot better, Thanks. May I ask what the "Right" and "Screen" part indicate (why is screen used on the second combobox instead of Me.Active.Control like the 1st)
    Last edited by bssm; 02-21-2015 at 09:51 PM.

  10. #10
    Registered User
    Join Date
    04-14-2010
    Location
    NZ
    MS-Off Ver
    2007,2010
    Posts
    86

    Re: For Loop Combo Boxes with If Statement

    "Screen" should be me. updated now.
    Right is taking the last character from the name of the current combobox.. mid1 = 1, mid2 = 2, 3, etc.. just realised I've forgotten to account for two digit numbers.

    Edit: Updated version - Passes the entire name of the combobox, and uses Replace() to change the mid to mia, so the reference works for the textbox.
    Please Login or Register  to view this content.
    Last edited by Deamo; 02-21-2015 at 10:05 PM. Reason: added new code

  11. #11
    Registered User
    Join Date
    02-15-2015
    Location
    London
    MS-Off Ver
    2010
    Posts
    27

    Re: For Loop Combo Boxes with If Statement

    Thanks very much, perfect

    Expanding on the Sub CheckCombo, would there be a formula to add all the "mia" boxes" values and all the "moa" boxes, currently I have:
    (tmi is another textbox in the userform for sum of all the mia combobox values, tmo is for all moa values)

    Please Login or Register  to view this content.
    I am thinking there is probably something much shorter
    Last edited by bssm; 02-21-2015 at 10:36 PM.

  12. #12
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: For Loop Combo Boxes with If Statement

    You can handle the events of all the comboboxes via a class.

    Mind you having 50 identical checkboxes with corresponding textboxes seems quite a lot.

    Have you considered another approach?

    For example one combobox, one textbox, a listbox and a command button.

    The user makes their selection in the combobox, enters the value in the textbox and then when they press the command button the selection and value are transferred to the listbox.

    Additional buttons could be added to delete/edit previous entries.

  13. #13
    Registered User
    Join Date
    04-14-2010
    Location
    NZ
    MS-Off Ver
    2007,2010
    Posts
    86

    Re: For Loop Combo Boxes with If Statement

    Ok, so after some googling and trial and error, I think this is the class solution that Norie mentioned.. I don't fully understand this currently, but seems to work anyway.
    To use this, you need to insert a class module in your VBA project -- right click > insert > class module

    Code for userform module
    Please Login or Register  to view this content.
    Code for Class module
    Please Login or Register  to view this content.

  14. #14
    Registered User
    Join Date
    02-15-2015
    Location
    London
    MS-Off Ver
    2010
    Posts
    27

    Re: For Loop Combo Boxes with If Statement

    Thanks so much, I have decided to redo the Userform as suggested with a combobox for description, a text box for the amount and then a list box. My listbox is two column I can add one item from the combobox to column 1 and the textboxitem to column 2 , but if I try adding another item it just overwrites, this is my code:


    Please Login or Register  to view this content.
    I feel like there should be something to count the rows or go to next row in the ListBox? Where am I going wrong

  15. #15
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: For Loop Combo Boxes with If Statement

    You need to change the row.
    Please Login or Register  to view this content.

  16. #16
    Registered User
    Join Date
    02-15-2015
    Location
    London
    MS-Off Ver
    2010
    Posts
    27

    Re: For Loop Combo Boxes with If Statement

    Thanks.

    Ive added buttons to delete a row if its selected in the listbox and a button to clear all rows in the listbox.

    What would be the best way to add a button so I can edit the selected row in the list box.
    Last edited by bssm; 02-22-2015 at 06:43 PM.

  17. #17
    Registered User
    Join Date
    04-14-2010
    Location
    NZ
    MS-Off Ver
    2007,2010
    Posts
    86

    Re: For Loop Combo Boxes with If Statement

    You replace the value in the listbox, with the correct value.

    This line changes the value in column 2 of the seleced row to "Changed Value"
    Listindex returns the row selected in the listbox (zero based).

    Please Login or Register  to view this content.
    Whichever way works best for you I'd guess.. a couple input box dialogs perhaps?

  18. #18
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: For Loop Combo Boxes with If Statement

    What you need to do is first check the user has selected a row in the listbox, you can do that like this.

    Please Login or Register  to view this content.
    We then need to load the data from the listbox to the textbox, so we continue the code like this.
    Please Login or Register  to view this content.
    To write the amended data back to the listbox we would reverse the above code.

  19. #19
    Registered User
    Join Date
    02-15-2015
    Location
    London
    MS-Off Ver
    2010
    Posts
    27

    Re: For Loop Combo Boxes with If Statement

    Perfect Thanks very much

    My ListBox is called MoniesInList

    I am trying to get a total of all items in the 2nd column and show in a Textbox, my code is:

    Please Login or Register  to view this content.
    I keep getting an error Invalid Use of Null, when it gets to the MySum = MySum + Val(MoniesInList.List(i, 2)) section, I am unsure why.
    Last edited by bssm; 02-24-2015 at 08:48 PM.

  20. #20
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: For Loop Combo Boxes with If Statement

    Are there any empty rows in the column you are trying to sum?

  21. #21
    Registered User
    Join Date
    02-15-2015
    Location
    London
    MS-Off Ver
    2010
    Posts
    27

    Re: For Loop Combo Boxes with If Statement

    No there isn't

  22. #22
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: For Loop Combo Boxes with If Statement

    Can you upload an example workbook?

    Click on GO ADVANCED and use the paperclip icon to open the upload window.

  23. #23
    Registered User
    Join Date
    02-15-2015
    Location
    London
    MS-Off Ver
    2010
    Posts
    27

    Re: For Loop Combo Boxes with If Statement


  24. #24
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: For Loop Combo Boxes with If Statement

    There's only 2 columns in the listbox those columns are zero-indexed.

    What that means is that to refer to column 1 you use 0, to refer to column 2 you use 1, to refer to column 3 you use 2 and so on.

    In your code you are referring to the, non-existent, third column.
    Please Login or Register  to view this content.

  25. #25
    Registered User
    Join Date
    02-15-2015
    Location
    London
    MS-Off Ver
    2010
    Posts
    27

    Re: For Loop Combo Boxes with If Statement

    Got it Thanks

    I have an add button which adds TextBox1 text to listbox Coulmn 1, and Textbox2 to Column 2. Then clears the text in both boxes and sets focus to textbox1 ready for a new entry.

    The code runs fine:

    Please Login or Register  to view this content.
    I am looking to setup my form so that is the user presses enter when in textbox2 the code will also run. I have the below code, yet it doesn't work no error code shows it just doesn't do anything. Is there anything missing.

    Please Login or Register  to view this content.
    Also when I have searched for running vba on enter press some sources say use the Keypress Event and some KeyDown event is there any difference or need to use one over the other?
    Last edited by bssm; 02-26-2015 at 08:40 PM.

  26. #26
    Registered User
    Join Date
    02-15-2015
    Location
    London
    MS-Off Ver
    2010
    Posts
    27

    Re: For Loop Combo Boxes with If Statement

    Hi I have most of this working.

    I have a button in my userform when I click it creates a table at a selected bookmark in my word document and then copies my listbox(MoniesIn) column 1 to column 1 of the created table.

    My code keeps getting stuck on the Horizontal Border Width formatting, I keep getting 'Run Time Error 5843 One of the values passed is out of Range'.

    I believe I need to set my table as a variable (?), but unsure how. Also I need it to always select the table in this document.

    This is my code, please help:

    Please Login or Register  to view this content.
    Last edited by bssm; 03-01-2015 at 01:42 PM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. How to loop through cells and populate combo boxes using VBA and Excel?
    By chowee21 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 02-19-2014, 10:44 AM
  2. [SOLVED] Help with code for userform text boxes, combo boxes and excel
    By innerise in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 01-20-2014, 09:07 AM
  3. [SOLVED] cascading combo boxes to run loop
    By union in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 11-11-2013, 02:29 PM
  4. Loop through ActiveX Combo boxes
    By Commercial_Coder in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 10-12-2012, 11:07 AM
  5. Loop Worksheet Combo Boxes
    By Mordred in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 07-25-2011, 10:25 AM

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