Help Basic Macro

RodrigoFreitas

New Member
Joined
Jul 26, 2010
Messages
2
I wrote this macro, but every time I click the cancel button, still in the loop, someone knows how I can resolve this error?

Sub ExemploDoLoopUntil()

Dim Nome As String

Do
Nome = InputBox("Digite o nome do usuário:")

Loop Until Nome <> ""

MsgBox "O nome do usuário é: " & Nome
End Sub
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Try this

Code:
Sub ExemploDoLoopUntil()
Dim Nome As Variant
Do
    Nome = Application.InputBox("Digite o nome do usuário:", Type:=2)
    If TypeName(Nome) = "Boolean" Then Exit Sub
Loop Until Nome <> ""
MsgBox "O nome do usuário é: " & Nome
End Sub
 
Upvote 0
When you click Cancel, the value of Nome is "" and so you are staying in the loop.

Try using Application.InputBox:
Code:
Nome = Application.InputBox("Digite o nome do usuário:")

With this, when you click Cancel the value of Nome = False instead of "" and the loop will exit.
 
Upvote 0
Try this

Code:
Sub ExemploDoLoopUntil()
Dim Nome As Variant
Do
    Nome = Application.InputBox("Digite o nome do usuário:", Type:=2)
    If TypeName(Nome) = "Boolean" Then Exit Sub
Loop Until Nome <> ""
MsgBox "O nome do usuário é: " & Nome
End Sub

Thanks!!!
 
Upvote 0

Forum statistics

Threads
1,214,805
Messages
6,121,665
Members
449,045
Latest member
Marcus05

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