Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'd like to create a pop-up windo that the user selects yes or no and their
response is recorded in an excel cell |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You never said where you wnated to put the value. This code places the yes or
No in the first empty cell of column A on sheet 1 Sub AddMessage() With Sheet1.Cells(Rows.Count, "A").End(xlUp).Offset(1, 0) If MsgBox("Yes or No", vbYesNo, "Yes/No") = vbYes Then .Value = "Yes" Else .Value = "No" End If End With End Sub -- HTH... Jim Thomlinson "Brad N" wrote: I'd like to create a pop-up windo that the user selects yes or no and their response is recorded in an excel cell |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Make a negative response to if question equal zero | Excel Discussion (Misc queries) | |||
How can I make a sound alert using macro in Excel! (But not use speaker) | Excel Programming | |||
How to make an alert system by Excel ? | Excel Programming | |||
How to make an alert system by Excel ? | Excel Programming | |||
How to make an alert system by Excel ? | Excel Programming |