List<COAData> ImportData ....; .... string sSearchUnits = "oldvalue"; string sReplaceUnits = "newvalue"; ImportData.Where(x => x.Result_Units == sSearchUnit).ToList().ForEach(x => x.Result_Units = sReplaceUnit);
List<COAData> ImportData ....; .... string sSearchUnits = "oldvalue"; string sReplaceUnits = "newvalue"; ImportData.Where(x => x.Result_Units == sSearchUnit).ToList().ForEach(x => x.Result_Units = sReplaceUnit);