Adding Manual Integration Item to Report Template

When adding the manual integration item to your report template, is there anyway for it to only flag the peaks that were manually modified instead of flagging every peak in the injection even though they were not modified? I'm using Openlab CDS 2.6

Parents Reply Children
  • Hello,

    If you wanted to be able to see all the peaks in each injection that were manually integrated, you could create a custom calculation as below. You could also use this on an IR report to see the information in a single field.

    Marty Adams

    "Named Peaks: " & String.Join("_",CurrentInjection.AllIdentifiedPeaks.Where(function(x) x.Peak_BaselineCode.ToUpper() Like "*M*").Select(function(x) x.Compound_Name)) & " Unknowns: " & String.Join("_",CurrentInjection.AllNotIdentifiedPeaks.Where(function(x) x.Peak_BaselineCode.ToUpper() Like "*M*").Select(function(x) FormatNumber(x.Peak_RetentionTime.ToString(),2)))

Was this helpful?