VBA Worksheet Change from Table Cell

bs0d

Well-known Member
Joined
Dec 29, 2006
Messages
622
I'm trying to identify if a certain cell value changed in a table. Following examples found within the forum here, I'm only able to identify if the change occurs in a specific column. How can I adjust to a specific cell within the table?

I want to execute additional code if it's the first cell in the second column of my table.


Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Count <> 1 Then Exit Sub

    If Not Intersect(Target, Range("MyTable[MyColumnName]")) Is Nothing Then

        On Error GoTo CleanUp
       Application.EnableEvents = False
  
 Msgbox "Success"
  
    Else
    
        On Error GoTo CleanUp
        Application.EnableEvents = False

    End If

CleanUp:
    Application.EnableEvents = True
    
End Sub
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Target.Address gives the address of the changed cell(s).
 
Upvote 0
Maybe...

Code:
If Not Intersect(Target, Range("MyTable[MyColumnName]").Cells(1)) Is Nothing Then

M.
 
Last edited by a moderator:
Upvote 0

Forum statistics

Threads
1,215,506
Messages
6,125,193
Members
449,213
Latest member
Kirbito

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top