Hi folks,
I need a formula to run through a sheet and delete the row IF column C contains the word "Closed" . The problem is that data is in a table which is connected ( 2 way) to a share point list. I have tried using auto filter,looping etc but it fails at the 'delete' line. Am trying to delete the rows in excel and use "Synchronize with share point",so that the changes are reflected in the SP list.
I have used the below code to import the list to excel.
Can some one help me here?? Many Thanks in advance.
I need a formula to run through a sheet and delete the row IF column C contains the word "Closed" . The problem is that data is in a table which is connected ( 2 way) to a share point list. I have tried using auto filter,looping etc but it fails at the 'delete' line. Am trying to delete the rows in excel and use "Synchronize with share point",so that the changes are reflected in the SP list.
I have used the below code to import the list to excel.
Code:
[/COLOR]
Sub Link()
ActiveSheet.ListObjects.Add SourceType:=xlSrcExternal, _ Source:=Array(URL, "List Projects", _
Prj_Vw), LinkSource:=True, Destination:=Range("A1")
End Sub[COLOR=#333333]
Can some one help me here?? Many Thanks in advance.