Calculating Six Sigma Levels

P

PC Datasheet

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

If you are using "six sigma" in the statistical sense, see other responses
for calculations. If you are not, post back with additional explanation.
 
Top