Combine InputBox and Do Loop to read user input : InputBox « Language Basics « VBA / Excel / Access / Word

VBA / Excel / Access / Word
1. Access
2. Application
3. Data Type
4. Data Type Functions
5. Date Functions
6. Excel
7. File Path
8. Forms
9. Language Basics
10. Math Functions
11. Outlook
12. PowerPoint
13. String Functions
14. Windows API
15. Word
16. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
VBA / Excel / Access / Word » Language Basics » InputBox 
Combine InputBox and Do Loop to read user input
 

Sub GetValue3()
    MinVal = 1
    MaxVal = 12
    Msg = "Enter a value between 1 and 12"
    ValidEntry = False
    Do
        UserEntry = InputBox(Msg)
        If IsNumeric(UserEntryThen
            If UserEntry >= And UserEntry <= 12 Then
                ValidEntry = True
            Else
                Msg = "Your previous entry was INVALID. Enter a value between 1 and 12"
            End If
        End If
        If UserEntry = "" Then Exit Sub
    Loop Until ValidEntry
    ActiveSheet.Range("A1").Value = Val(UserEntry)
End Sub

 
Related examples in the same category
1. The InputBox function displays a dialog box containing a simple text box
2. Using the InputBox Function: InputBox(prompt [, title] [, default] [, xpos] [, ypos] [, helpfile, context])
3. Get the return value from InputBox
4. Return a number from InputBox
5. Read data from dialog box and fill it into the cell
6. Read password from InputBox
7. Validation with the InputBox() Function
8. How to handle error caused by value from InputBox
9. Use InputBox to read value for an array
10. Reference InputBox from Application
11. It is a good idea to include the title and default arguments to provide the user with a little help in knowing what to enter.
12. Checks for the Cancel button clicks and takes no action.
13. Use If and IsNumeric function to check user input
14. Validate the user's entry.
15. Provide help file for InputBox
16. To retrieve input from an input box, declare the numeric variable or String variable that will contain it
17. To make sure that the user has chosen the OK button, check that the input box hasn't returned a zero-length string
18. Use parameter name in InputBox function
19. Get the Password
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.