MSG Loop

liam_conor

Board Regular
Joined
Oct 9, 2002
Messages
180
I have a userform, UserForm1, with a list box and commandbutton. The list box shows all the existing worksheets in my workbook. The user selects the desired worksheet and clicks the command button to travel to it. After they have traveled to the worksheet a Yes/No MSG Box pops up and asks the user if this is the correct worksheet...

Question: How do I write a loop that will continually show a MSG Box until they have selected the Yes option on the MSG Box.

My Current Code..........

Sub ShowAllSheetBox()

' ShowAllSheetBox Macro

Dim Msg, Style, Title, Response

'Shows the UserForm1

UserForm1.Show
Msg = "Is this the JSA you wanted?"
'Message to display
Style = vbYesNo
'Display a Yes and a No button
Title = "CONFIRMATION..."
Response = MsgBox(Msg, Style, Title)
Style = vbOKOnly
Title = "User Response ..."

If Response = vbYes Then
Msg = "Yes"
Response = MsgBox("End Search", Style, Title)
Else: Msg = "No"
' Shows the user form again
UserForm1.Show
End If

End Sub
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
amend your code on the button to

if blah = vbno then go to 99

where 99 is written above the start of the msg box - so it reappears...
 
Upvote 0

Forum statistics

Threads
1,214,585
Messages
6,120,394
Members
448,957
Latest member
Hat4Life

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top