Area reject on individual chromatograms?

Compound A elutes in each chromatogram and i want to report the peak areas in each chromatogram that are greater than the peak area of Compound A in each chromatogram. As the area of Compound A varies in each chromatogram i can't use the area reject in the processing method as this applies globally to all chromatograms.

Can you help find a way to do this? I am using OpenLab 2.3.

Regards 

  • Camelia,

    The code to use in a filter expression to get a variable when not directly available( CDS 2.1 up to 2.4 and in C.01.10 Chemstation) is below. CDS 2.5 allows direct access to variable in the filters. The one limitation is that variables must be numeric values. 

    Marty Adams

    Here is a simple example.

    Define a variable (“PeakNumber”) saved as unique key value on Peak_ID. If you do not have an index you can leave that out. Note: This only works in C.01.10 Chemstation and CDS 2.1 and higher.  

    Then use is in a filter as following to show the 10 biggest peaks:

     

    Code.DVL.GetValue(Peak_ID & “PeakNumber”) > 0

    And

    Code.DVL.GetValue(Peak_ID & “PeakNumber”) <= 10

  • Superb! I have used this with CDS 2.3 successfully. It is the simplest approach and i am able to then use a summary calculation on the column which i couldn't do with the custom field column.

    Thanks so much for your sharing

Was this helpful?