I have a macro that (after some data checks) calls a userform, which prompts a range input from the user with an input box. However, it seems the only way to enter data is by using the mouse, and the ctrl + shift + arrow combinations don't seem to work. I know I have used input boxes that allow for keyboard entry--for example, see below. Is there anything that will allow this functionality via a userform?
![]()
Sub test() Set A = Application.InputBox(Prompt:="Input data", Type:=8) End Sub
Bookmarks