How do I calculate the standard error of the mean in MS Access? Here is what I have in mind:
SELECT
Avg(qryAvgGROP.PctGROP_MCAR) AS AvgAvgGROP_MCAR
StandardError(qryAvgGROP.PctGROP_MCAR) AS SemAvgGROP_MCAR
FROM qryAvgGROP;
In this example, qryAvgGROP returns a group of averages, which are again averaged in the code above. I therefore need the standard error of the mean, and NOT the standard deviation, so I cannot use the StDev() function.