how would you calculate sigma levels in access?
P PC Datasheet Oct 13, 2005 #2 Population Sample: SELECT StDev([Freight])*6 AS [6SigmaFreightDevSample] FROM Orders WHERE [ShipCountry] = 'UK'; Population: SELECT StDevP([Freight])*6 AS [6SigmaFreightDevPopulation] FROM Orders WHERE [ShipCountry] = 'UK';
Population Sample: SELECT StDev([Freight])*6 AS [6SigmaFreightDevSample] FROM Orders WHERE [ShipCountry] = 'UK'; Population: SELECT StDevP([Freight])*6 AS [6SigmaFreightDevPopulation] FROM Orders WHERE [ShipCountry] = 'UK';
J Jeff Boyce Oct 16, 2005 #3 If you are using "six sigma" in the statistical sense, see other responses for calculations. If you are not, post back with additional explanation.
If you are using "six sigma" in the statistical sense, see other responses for calculations. If you are not, post back with additional explanation.