Do Until Loop

R

RVS

Hello all,

Here's my problem...

I'm in the process of writing a program that will allow the user to select a
month and week number (1 through 5 for each week of the month) for that
particular month by means of a dialog box. When the user clicks the OK
button, the program finds the appropriate month and the appropriate week
number for that month and colors that cell blue.

I've set the value in the Month combo box equal to a variable and then wrote
a Do Until loop so that the program will stop on the cell whose value is the
same as the month selected in the combo box. That part works fine.

I have another combo box where the user can select the week number for that
particular month. I tried writing another Do Until loop that will tell the
program to stop on the cell whose value is equal to the selected week number,
but it doesn't work. The program keeps looping and doesn't seem to recognize
when the cell value is equal to the week number variable.

My code is below...


Private Sub OKButton_Click()

SelectedMonth = ComboBox1.Value

WeekNum = ComboBox2.Value

'Find month on spreadsheet that matches month selected by user

x = 13
Do Until Cells(2, x).Value = SelectedMonth
x = x + 5
Loop
Cells(2, x).Select

'Find week number underneath correct month that matches week number selected
by user
'Variable 'x' represents the first week of the month selected by user

Do Until Cells(3, x).Value = WeekNum
x = x + 1
Loop


End Sub


Any help would be much appreciated!
 
J

JLGWhiz

You can also use a conversion function.

Do Until Cells(3, x).Value = CInt(WeekNum)
x = x + 1
Loop
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

DO Until Loop 2
Last Day of the Latest Month Syntax problem 5
Loop until X or Y? 1
Working With A Loop 2
do until loop 2
Variables in a Userform 1
loop...until .. 3
Populate User Form Text Box from Worksheet? 1

Top