Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have 5 listboxes when I do a click event on one of them this causes the
macros on all listboxs to run one after other? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am assuming your list boxes are in a sheet and that you created them using
data validation? My code here assumes the list boxes are in cells A1, B1 and C1. You can modify this for 5 list boxes placed where ever. Private Sub Worksheet_Change(ByVal Target As Range) Select Case Target.Address Case "$A$1" MsgBox Target.Value Case "$B$1" MsgBox Target.Value Case "$C$1" MsgBox Target.Value End Select End Sub If my assumptions are inccorect then let me know and post your code with the reply... HTH "CStephenson" wrote: I have 5 listboxes when I do a click event on one of them this causes the macros on all listboxs to run one after other? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
capture listbox click | New Users to Excel | |||
ListBox Click Event | Excel Discussion (Misc queries) | |||
how to disable listbox change event | Excel Programming | |||
Listbox on click | Excel Programming | |||
Is refreshing listbox rowsource in listbox click event possible? | Excel Programming |