My requirement is i extract a name from subject of the email and add to existing datatable using add data column activity after that i have some comparing between datatables , My issue is when there is no name in subject of the email i dont use add datacolumn activity , but when comparing it causes issue , saying column not found
Is there any way where i check if a particular column data exists for eg : i am checking row2(6) where ‘6’ column is not present
if you are using index for your columns, you can check first the lenght of the column with yourDt.ColumnCount, else if you know the name on the column use Dt.Columns.Contains(“stringText”)