The code below is used to connect to a sharepoint list and delete rows WHERE "Code Column" values match 'VALUE', can i change 'VALUE' in the code bellow to a cell reference, like [A1]? how?
Video Code Source: https://www.youtube.com/watch?v=UWrVLdFaapQ&list=PLo0aMPtFIFDrcPiWbqJGb3qt3rkOmjDbN&index=5
Sub allTst_SharePoint()
Dim mySQL As String
Dim cnt As ADODB.Connection
Dim rst As ADODB.Recordset
Dim xuser As String
Dim xactivity As String
Dim xtimesince As Date
Set cnt = New ADODB.Connection
Set rst = New ADODB.Recordset
mySQL = "Delete * FROM [mylist] WHERE [Code] = 'VALUE' ;"
With cnt
.ConnectionString = _
"Provider=Microsoft.ACE.OLEDB.12.0;WSS;IMEX=0;RetrieveIds=Yes;DATABASE=mySPsite;LIST={myguid};"
.Open
End With
cnt.Execute mySQL, , adCmdText
If CBool(rst.State And adStateOpen) = True Then rst.Close
Set rst = Nothing
If CBool(cnt.State And adStateOpen) = True Then cnt.Close
Set cnt = Nothing
End Sub