I have data in the below format:
<colgroup><col span="2"><col><col span="5"></colgroup><tbody>
</tbody>
I have made a pivot table where I have sort data as per lot no. I want to take average & stdev of entries in D1,...D5 for each lot no. spread in 5 columns, How to do that?
BOAT NO | LOT NO | D1 | D2 | D3 | D4 | D5 | STATUS |
F4/337 | 5973 | 10.6 | 10.59 | 10.59 | 10.59 | 10.59 | ACC |
F4/338 | 5973 | 10.6 | 10.58 | 10.59 | 10.6 | 10.6 | ACC |
F4/339 | 5915 | 10.61 | 10.62 | 10.61 | 10.61 | 10.62 | ACC |
F4/340 | 5986 | 10.59 | 10.58 | 10.59 | 10.58 | 10.58 | ACC |
F4/341 | 5915 | 10.47 | 10.49 | 10.48 | 10.48 | 10.49 | ACC |
F4/342 | 5915 | 10.61 | 10.62 | 10.64 | 10.48 | 10.62 | ACC |
<colgroup><col span="2"><col><col span="5"></colgroup><tbody>
</tbody>
I have made a pivot table where I have sort data as per lot no. I want to take average & stdev of entries in D1,...D5 for each lot no. spread in 5 columns, How to do that?