行を反復処理するときに[投稿済み]列をチェックして、行が投稿されているかどうかを確認します。
For Each xRows In MasterForm.oTransferRows.Where(Function(x) x.Cells("Posted").Value.ToString() = "No")
次に、次の疑似ロジックを使用してコードを記述します。
'code to select data - select name from testing where name = 'Product1'
'if(dr.Read())
'update goes here
'Else
' insert goes here
'End if