by
shaun78 » Fri Mar 11, 2016 2:19 pm
Many, many ways to skin this cat…
My preference is:
1. Label initial system suitability injections SS1.
2. Label bracketing injections SS2 .. SS9, or how ever many you need.
Custom fields:
1. SS1.%.%.AVE(Area) called SS1
2. SS2.%.%.AVE(Area) called SS2
Continue the above until you have the number that you need. These are peak type, real custom fields.
Create a final custom field called System_Suitability. This custom filed is a peak type, real field as well. This custom field looks like:
EQ(Label,"SS2")*((ABS(SS2/SS1)*100)-100) + EQ(Label,"SS3")*((ABS(SS3/SS1)*100)-100) …
The System_Suitability field allows you to create a table in a report with only sample information in addition to this column to show bracket results for all standards no matter if you have two or one hundred brackets.
Your custom fields are not working because the correct format of a summary function type custom field is X.Y.Z.Function(Parameter), where X= Label, Y=Injection, Z=Channel ID, Function= Mix, Max, Average, %RSD, etc, and Parameter= Area, Amount, another custom field, etc.
From your custom field you have the label and injection (though you are limiting to the first injection in all cases), and are using the parameter in place of the channel, which is why the field is not calculating. Furthermore, you have dropped out the Function from the custom field format.