I'm looking for the best function to apply the product of the last two elements of sublist elements to each element:
Example:
(*INPUT:*)
{{ExperimentCode1, No of Experiments1,
Volume Used1}, {ExperimentCode2, No of Experiments2, Volume Used2} ...}
(*OUTPUT:*)
{{ExperimentCode1, No of Experiments1,
Volume Used1, (No of Exp1 * Vol Used1)}, {ExperimentCode,
No of Experiments, Volume Used, (No of Exp2 * Vol Used2)} ...}
I know I could just use a Do loop with an index k and do it element by element with 'AppendTo', but I guess there is a faster method.



