string textContains = project.Variables["text"].Value;
var sourceTable = project.Tables["Таблица 1"];
lock(SyncObjects.TableSyncer) {
for (int i = 0; i < sourceTable.RowCount; i++) {
var cells = sourceTable.GetRow(i).ToArray();
if (cells[1].Contains(textContains))
return "Совпадение в "+Convert.ToString(i+1)+" строке";
}
}