I have the following code, which works fine as a module, but i would rather have it working as a worksheet_change (Table_owssvr is connected to an external source):
If Application.WorksheetFunction.CountA(Range("Table_SiteManager[Title]")) <> 0 _
Then Range("Table_SiteManager[Title]").Rows(2).Delete
Range("Table_owssvr[Title]").Copy _
Destination:=Range("Table_SiteManager[Title]")
Any ideas?
Thanks.
I figured out a way myself in case anyone should be interested: