Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How do I get this to place information onto a work sheet called committee
cell b10? Private Sub CommandButton9_Click() Dim MyInput MyInput = InputBox("Enter your name") MsgBox MyInput End Sub Thanks Greg |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Greg, here is one way,
Sheets("committee").Range("B10") = InputBox("Enter your name") -- Paul B Always backup your data before trying something new Please post any response to the newsgroups so others can benefit from it Feedback on answers is always appreciated! Using Excel 2002 & 2003 "Greg B" wrote in message ... How do I get this to place information onto a work sheet called committee cell b10? Private Sub CommandButton9_Click() Dim MyInput MyInput = InputBox("Enter your name") MsgBox MyInput End Sub Thanks Greg |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
OK Thanks for your help
Greg "Paul B" wrote in message ... Greg, here is one way, Sheets("committee").Range("B10") = InputBox("Enter your name") -- Paul B Always backup your data before trying something new Please post any response to the newsgroups so others can benefit from it Feedback on answers is always appreciated! Using Excel 2002 & 2003 "Greg B" wrote in message ... How do I get this to place information onto a work sheet called committee cell b10? Private Sub CommandButton9_Click() Dim MyInput MyInput = InputBox("Enter your name") MsgBox MyInput End Sub Thanks Greg |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Worksheets("committee").Range("B10").Value = MyInput
-- HTH RP (remove nothere from the email address if mailing direct) "Greg B" wrote in message ... How do I get this to place information onto a work sheet called committee cell b10? Private Sub CommandButton9_Click() Dim MyInput MyInput = InputBox("Enter your name") MsgBox MyInput End Sub Thanks Greg |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks to both of you for the help
Greg "Bob Phillips" wrote in message ... Worksheets("committee").Range("B10").Value = MyInput -- HTH RP (remove nothere from the email address if mailing direct) "Greg B" wrote in message ... How do I get this to place information onto a work sheet called committee cell b10? Private Sub CommandButton9_Click() Dim MyInput MyInput = InputBox("Enter your name") MsgBox MyInput End Sub Thanks Greg |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to input pictures automatically based on cell input? | Excel Worksheet Functions | |||
input in number form is being multiplied by 1000 when i input. | Excel Discussion (Misc queries) | |||
Have user input converted to uppercase in same cell as input? | New Users to Excel | |||
How do I add input data in the input ranges in drop down boxes. | Excel Discussion (Misc queries) | |||
CODE to select range based on User Input or Value of Input Field | Excel Programming |