Report Script: Get Field that is not in Report v2: Difference between revisions

no edit summary
mNo edit summary
No edit summary
Line 160:
//This DataRow is a reference to an array of DataRow (sRows) by index
row = sRows[i];
projNo = row["ProjNo"].ToString();
 
//Skip if ProjNo is empty value, and avoid repeating in the list
if (row["ProjNo"]string.IsNullOrEmpty(projNo) != DBNull.Value && !projNoSqlList.Contains(projNo))
{
projNo = row["ProjNo"].ToString();
 
//Add ProjNo to ProjNoSqlList
projNoSqlList = projNoSqlList == ""