About 243,000 results
Open links in new tab
  1. InputBox function (Visual Basic for Applications)

    Mar 30, 2022 · This example shows various ways to use the InputBox function to prompt the user to enter a value. If the x and y positions are omitted, the dialog box is automatically centered …

  2. Excel VBA InputBox: Step-by-Step Guide and 9 Examples

    Quickly learn how to create input boxes (with both the InputBox function and the Application.InputBox method) using macros with this step-by-step tutorial. Includes 9 easy-to …

  3. InputBox Function in Excel VBA - GeeksforGeeks

    Sep 9, 2025 · The InputBox function in Excel VBA displays a dialog box to collect user input, such as text, numbers, or ranges, for use in macros. Unlike MsgBox, which displays data, InputBox …

  4. VBA InputBox Function - Explained with Examples

    Sep 24, 2023 · The InputBox function displays a dialog box containing a message or prompt for the user, along with an input field for the user to enter their desired input. This function can be …

  5. InputBox Function in Excel VBA - Step by Step Tutorial

    You can use the InputBox function in Excel VBA to prompt the user to enter a value.

  6. The InputBox Function

    If the user clicks OK or presses ENTER , the InputBox function returns whatever is in the text box. If the user clicks Cancel, the function returns a zero-length string (""). In the example given in …

  7. VBA INPUTBOX Function - BetterSolutions.com

    Jul 1, 2025 · How to use the VBA INPUTBOX function to returns a dialog box allowing the user to enter some information (String).

  8. VBA InputBox Function - How to Create & Store Values?

    Guide to what is VBA InputBox Function. Here we learn how to create VBA InputBox & process the stored values in Excel with examples and downloadable template.

  9. Application.InputBox method (Excel) | Microsoft Learn

    Mar 30, 2022 · Use InputBox to display a simple dialog box so that you can enter information to be used in a macro. The dialog box has an OK button and a Cancel button. If you select the …

  10. The InputBox Function, the InputBox method, and using strptr

    There's another advantage of this InputBox method over the standard VBA InputBox function: it's not modal. If you're not familiar with that term, a modal form or dialog box is one which, while …