Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
mward77095
 
Posts: n/a
Default Really need help creating pop ups


How do I create a pop up in window that will ask a question and have a
blank spot for the answer?

Then, I want that answer to populate a database.

Please help. I'm pulling my hair out... and don't have many left.


--
mward77095
------------------------------------------------------------------------
mward77095's Profile: http://www.excelforum.com/member.php...o&userid=34240
View this thread: http://www.excelforum.com/showthread...hreadid=539992

  #2   Report Post  
Posted to microsoft.public.excel.misc
 
Posts: n/a
Default Really need help creating pop ups

Use the InputBox function in Excel VBA
assign a value to the answer, for example

Sub InputBoxExample()
x = InputBox("How Old Are you?", "Age")
Range("A1").Value = x
End Sub

This procedure displays an input box and then enters the value into
cell A1.
you can pick any cell you like.

somethinglikeant

  #3   Report Post  
Posted to microsoft.public.excel.misc
mward77095
 
Posts: n/a
Default Really need help creating pop ups


Ok, I think this is exactly what I'm looking for, but I know nothing
about VBA. How do I get the box to pop up automatically, and then have
the next one pop up etc.?


--
mward77095
------------------------------------------------------------------------
mward77095's Profile: http://www.excelforum.com/member.php...o&userid=34240
View this thread: http://www.excelforum.com/showthread...hreadid=539992

  #4   Report Post  
Posted to microsoft.public.excel.misc
somethinglikeant
 
Posts: n/a
Default Really need help creating pop ups

just add another inputbox function such as

Sub InputBoxExample()
x = InputBox("How Old Are you?", "Age")
y = InputBox("Are you a fan of the band Shack?","Shack")
Range("A1").Value = x
Range("A2").Value = y
End Sub

somethinglikeant

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Creating custom list with a comma in it barnabel Excel Discussion (Misc queries) 6 January 10th 06 06:14 AM
Creating an invoice with a lookup list wings Excel Discussion (Misc queries) 6 October 30th 05 02:37 AM
creating lists maebeeso New Users to Excel 1 July 18th 05 06:55 PM
Eliminate creating list that returns blank cells Marc Todd Excel Worksheet Functions 1 January 26th 05 09:58 PM
Creating a Microsoft Words document from an existing Excel spreads ringo tan New Users to Excel 1 December 30th 04 08:01 PM


All times are GMT +1. The time now is 03:43 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"