Edit Report OpenLab CDS 2.7

Hello everyone, I would like if the sample Amount is forgotten, a note is displayed in the assay or in the sample amount itself. So far there is a zero. How can I type this in the editor?

thanks!

Parents
  • Hello,

    If you would like to see a flag in DA injection results you could do a custom calculation. The CC below would look at all injections except the standards for a non-zero sample amount value. You could see all injections that do not have a valid entry in the summary injection results. 

    Marty 

    String.Join("_",CurrentSequence.AllInjections.Where(function (x) x.Sample.Sample_Type <> 1).Where(function (x) Double.IsNaN(x.Sample.Sample_Amount) OR x.Sample.Sample_Amount = 0).Select(function(x) x.Sample.Sample_Name & "-"  & x.Sample.Sample_OrderNumber.ToString())) 

Reply
  • Hello,

    If you would like to see a flag in DA injection results you could do a custom calculation. The CC below would look at all injections except the standards for a non-zero sample amount value. You could see all injections that do not have a valid entry in the summary injection results. 

    Marty 

    String.Join("_",CurrentSequence.AllInjections.Where(function (x) x.Sample.Sample_Type <> 1).Where(function (x) Double.IsNaN(x.Sample.Sample_Amount) OR x.Sample.Sample_Amount = 0).Select(function(x) x.Sample.Sample_Name & "-"  & x.Sample.Sample_OrderNumber.ToString())) 

Children
No Data
Was this helpful?