How to Select a Row in CV Table by Matching Text from a Variable?

By using below expression in assign activity you can get a table row

if you know column name
targetRow = dataTable.AsEnumerable().FirstOrDefault(Function(row) row("<ColumnName>").ToString().Trim() = targetText)

if you don’t know column name

targetRow = dataTable.AsEnumerable().FirstOrDefault(Function(row) row.ItemArray.Any(Function(cell) cell.ToString() = targetText))

For CV Click using variable check below links