Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I would like to run my script automatic when a value from one off my
collums changes. Can anyone help me out, cause im kinda stuck here. Thanks in advance, Joost Knol --- Message posted from http://www.ExcelForum.com/ |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Joost,
I would like to run my script automatic when a value from one off my collums changes. Can anyone help me out, cause im kinda stuck here. Check out the Worksheet_Change event: Private Sub Worksheet_Change(ByVal Target As Range) If Intersect(Target, Me.Range("A1:B10")) Is Nothing Then Exit Sub MsgBox "Your code" End Sub Rightclick a sheet tab, choose View code and paste and modify the code above. Regards, Jan Karel Pieterse Excel MVP www.jkp-ads.com |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Quick VBA Worksheet Change Event or Selection Question: | Excel Worksheet Functions | |||
question on button event | Excel Programming | |||
Workbook_Open event and combobox state storage question | Excel Programming | |||
Worksheet_Change event question | Excel Programming | |||
Event Question | Excel Programming |