Get instant live expert help on How do I do loop until

“My Excelchat expert helped me in less than 20 minutes, saving me what would have been 5 hours of work!”

Post your problem and you’ll get expert help in seconds.

Our professional experts are available now. Your privacy is guaranteed.

Here are some problems that our users have asked and received explanations on

how to do a for loop in Excel VBA? its for travelling salesman problem
Solved by B. E. in 27 mins
Write a VBA function that includes a loop that prints "Hello Coalition" 50 times.
Solved by Z. L. in 29 mins
VBA HELP: For Each Next or Loop addition to my code: I have a variable, named C, that's referencing a cell value. After running the code, I want that reference to move down 1 row, select that new cell value, place it into my C variable and run macro again. Repeat until all values in range have been completed.
Solved by T. S. in 26 mins
Private Sub ComboBox3_Change() ComboBox3.Visible = True strSQL = "Select * from schedule where Origin = '" & ComboBox1.Value & "' AND where Destination = '" & ComboBox2.Value & "'" rs.Open strSQL, strConnect, adOpenStatic Do Until rs.EOF ComboBox3.AddItem "Flight" & (rs("FltNumber") & rs("Origin") & "to" & rs("Destination")) rs.MoveNext Loop rs.Close Set rs = Nothing End Sub This is what I have so far, but basically I need the code to search through the database and find where Origin and Destination equals what the user plugged in for the previous two boxes
Solved by F. J. in 26 mins
How to loop in vlookup to next row..help pls
Solved by A. D. in 18 mins