Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9
Default Pop Up Windows

I want to have a pop up window appear that the user can input more
information into it and then transfer that information to another location in
the spreadsheet.

In my worksheet I have the user input a name in cell A1. When this name is
entered, I would like to have a pop up window appear asking the user to input
the birthday of the name just entered. Once the user enters this information
and closes the pop up window this birthday information is entered into cell
A139, which is then used for other programming of the worksheet.

I have never done this sort of thing before and am totally lost, please
someone help!

Thanks,
Russ
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 22,906
Default Pop Up Windows

Without knowing what name you expect in A1 the code below will accept anything
entered in A1.

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
On Error GoTo stoppit
Application.Enableevents = False
If Target.Address = "$A$1" And Target.Value < "" Then
B_Day = InputBox("enter your birthday")
Range("A39").Value = B_Day
End If
stoppit:
Application.Enableevents = True
End Sub

This is sheet event code.

Right-click on the sheet tab and "View Code"

Copy/paste into that sheet module.


Gord Dibben MS Excel MVP

On Sun, 10 Dec 2006 15:16:00 -0800, rbbbbeee
wrote:

I want to have a pop up window appear that the user can input more
information into it and then transfer that information to another location in
the spreadsheet.

In my worksheet I have the user input a name in cell A1. When this name is
entered, I would like to have a pop up window appear asking the user to input
the birthday of the name just entered. Once the user enters this information
and closes the pop up window this birthday information is entered into cell
A139, which is then used for other programming of the worksheet.

I have never done this sort of thing before and am totally lost, please
someone help!

Thanks,
Russ


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
i want all windows in one excel frame (windows in taskbar) Subramanya Excel Discussion (Misc queries) 1 December 18th 09 03:14 PM
cannot open exel from windows xp in windows vista and visa versa lildiana New Users to Excel 4 February 25th 09 07:26 PM
can windows vista edit shared document from windows xp sasa Excel Worksheet Functions 1 January 9th 08 06:44 PM
Page breaks are different in Windows 2000 and Windows XP Bill Allen Excel Discussion (Misc queries) 1 November 23rd 05 04:42 PM
Use Windows Script to run Windows Explorer Search? Ian Elliott[_3_] Excel Programming 0 January 12th 04 05:03 PM


All times are GMT +1. The time now is 01:35 PM.

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

About Us

"It's about Microsoft Excel"