Input Box

C

cassy01

is it possible to create a pop-up box to type in a value ??? then whe
the user clicks "ok" that value is then pasted into "D92" ??? is thi
possible ??

thank
 
J

Jim Rech

Assuming this is a macro question:

Sub Ask()
Dim Resp As String
Resp = InputBox("Enter a number")
If Resp <> "" Then Range("D92").Value = Resp
End Sub

--
Jim
message |
| is it possible to create a pop-up box to type in a value ??? then when
| the user clicks "ok" that value is then pasted into "D92" ??? is this
| possible ??
|
| thanks
|
|
| --
| cassy01
| ------------------------------------------------------------------------
| cassy01's Profile:
http://www.excelforum.com/member.php?action=getinfo&userid=780
| View this thread: http://www.excelforum.com/showthread.php?threadid=474143
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Pop-Up Box 2
Input box to find date 4
Selective Validation 4
pop up window 5
pop up box 1
Not all boxes have been entered 2
Array 3
Print Dialog box 1

Top