![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
New Member
Join Date: Feb 2002
Posts: 4
|
I have created an input box however when the macro is engaged the input box covers the information that is being entered. How can I move the input box over?
|
|
|
|
|
|
#2 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Sunny, spring-like Hull
Posts: 3,339
|
Take a look at the InputBox entry in VBA help, you can specify the starting position of the box on the screen.
|
|
|
|
|
|
#3 |
|
Legend
Join Date: Feb 2002
Location: Minneapolis, Mn, USA
Posts: 9,704
|
Like this:
f = InputBox(prompt:="Enter Stuff", Title:="Yallo!", xpos:=1, ypos:=1) define your x & y positions (this is the upper right of the screen). Cheers, Nate |
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|