For those who have been around spreadsheet programs for quite some time, you may remember the old {?}~ command that was available in Lotus 1-2-3. This command allows you to pause the macro while the user enters data in the spreadsheet.
Excel doesn't include the same capability, but it does have ways that you can prompt the user for input. The two primary methods are these:
Both of these functions have been discussed in other issues of ExcelTips, as noted in the links above. Based on the user's input, you can modify what the macro does in any way desired. The only drawback to the functions is that they only return a single, discrete piece of data. In other words, they aren't designed to allow the user to input a range of cells and then continue processing. For instance, if you wanted to ask the user to provide five values destined for five cells, you would need to present an InputBox five times, depositing the user's responses into the desired cells one after the other.
Note:
ExcelTips is your source for cost-effective Microsoft Excel training. This tip (9515) applies to Microsoft Excel 2007, 2010, 2013, 2016, 2019, and Excel in Microsoft 365.
Program Successfully in Excel! John Walkenbach's name is synonymous with excellence in deciphering complex technical topics. With this comprehensive guide, "Mr. Spreadsheet" shows how to maximize your Excel experience using professional spreadsheet application development tips from his own personal bookshelf. Check out Excel 2013 Power Programming with VBA today!
When you open multiple workbooks, the way in which Excel sizes them is not the best for your needs. This tip looks at a ...
Discover MoreIf you have a macro that takes a long time to process a workbook, you might want to continue working in Excel while the ...
Discover MoreWhat would you do if you had a macro-enabled workbook that refused to work properly on computers using later versions of ...
Discover MoreFREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
2020-12-24 11:16:37
J. Woolley
You might also be interested in the freely available MsgBoxModeless procedure included in My Excel Toolbox. See https://sites.google.com/view/MyExcelToolbox/
2019-08-10 10:55:42
Willy Vanhaelen
@Adrian
The use of InputBox can be as simple as this:
Sub Test()
Range("A1") = InputBox("Type something")
' if needed, your code goes here
End Sub
If you enter a number, VBA enters it as numeric.
If you type a string, VBA enters it as text.
If you press OK without typing something or press Cancel or Esc, VBA will clear cell A1
2019-08-10 10:30:07
J. Woolley
@Adrian
I think you want a modeless UserForm. In VBE, use Insert > UserForm. Decorate your UserForm1 (add a Close button), then in your VBA macro, add:
Load UserForm1
UserForm1.Show 0 ' show modeless
Add a While loop with
Application.Wait(Now + TimeValue("0:00:01"))
to monitor the Close button's Click event. While the form is displayed, the macro will pause and you will be able to edit cells. When the form is closed, exit the While loop.
2019-08-09 10:17:18
Peter Atherton
Adrian
Sub tester()
Dim x As Variant, c As Range
x = Application.InputBox("Enter your text", "Something Useful", , Type:=2)
[a2] = x
For Each c In ActiveSheet.UsedRange
If c = [a2] Then
c.Font.Bold = True
End If
Next
End Sub
Of course you do not have to enter x into A2 the macro can just refer directly to x
If c = x then ...
Type 2 is a string, see J Jooleys post below.
2019-08-08 08:29:49
Adrian J Turner
I am sorry to appear very thick but I cannot work this out at all, using VBA is it possible to pause a macro to add text into cell a2 then hit return and move on and continue with the macro?
2019-06-05 11:42:18
Willy Vanhaelen
Here is a typical example of the use of InputBox and MsgBox: This macro asks to enter a column letter or letters and gives you the corresponding column number.
Sub ColNr()
X = InputBox("Column letter(s)")
X = Sheet1.Range(X & 1).Column
MsgBox "Column number is: " & X
End Sub
This is a simple macro that does not trap errors.
You can even combine it's 3 lines to one line:
Sub ColNr()
MsgBox "Column number is: " & Sheet1.Range(InputBox("Column letter(s)") & 1).Column
End Sub
By adding On Error Resume Next you trap all errors. You don't get an answer but neither do you get a crash message from vba:
Sub ColNr()
On Error Resume Next
MsgBox "Column number is: " & Sheet1.Range(InputBox("Column letter(s)") & 1).Column
End Sub
Here is something to play with:
Copy the following line to the clipboard:
MsgBox "Column number is: " & Sheet1.Range(InputBox("Column letter(s)") & 1).Column
paste it into the Immediate Window in vba and press enter. Have fun.
2019-06-04 13:21:52
JMJ
@J. Woolley: VERY interesting! I didn't know that form of InputBox, but it is the answer to many, many problems... Thank you!
2019-06-01 10:46:53
J. Woolley
Application.InputBox is more versatile than VBA.InputBox (which only returns a String). Application.InputBox can return a Range or an array of values. See
https://docs.microsoft.com/en-us/office/vba/api/excel.application.inputbox
Got a version of Excel that uses the ribbon interface (Excel 2007 or later)? This site is for you! If you use an earlier version of Excel, visit our ExcelTips site focusing on the menu interface.
FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."
Copyright © 2022 Sharon Parq Associates, Inc.
Comments