VBA

VBA – InputBox

  • Post author:
  • Post category:VBA
  • Post comments:0 Comments

The InputBox function prompts the users to enter values. After entering the values, if the user clicks the OK button or presses ENTER on the keyboard, the InputBox function will return the…

Continue ReadingVBA – InputBox

VBA – Message Box

  • Post author:
  • Post category:VBA
  • Post comments:1 Comment

The MsgBox function displays a message box and waits for the user to click a button and then an action is performed based on the button clicked by the user. Syntax MsgBox(prompt[,buttons][,title][,helpfile,context])…

Continue ReadingVBA – Message Box