Std Dev of a set of numbers

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to find the average and std dev for each of five different
manufacturing lines. The data is all in the same column. I'm thinking an if
statement is the way to go but can't quite get it to work. Any ideas?
 
Why do you think you should use an IF statement? Post what you are trying.

Why not this simple query?

SELECT Avg([Change Requests].x) AS AvgOfx, StDev([Change Requests].x) AS
StDevOfx
FROM [Change Requests];
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top