Access 2000. Build expression STDev, 30 fields?

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

Guest

Need to calculate STDev for 30 fields in one record. I need an example please.
 
An example of how to normalize it to a single column, such that you can
query that one column? Or something else?
 
I want the answer in one column in a query so that I can then use the answer
in a form/report.
 
Ok. Create a new table with the single column. Create an append query, one
for every column in the multicolumn table., to write the data to the single
column table.

Then Perform your stats query from the single column table.
 
Steve, thanks for the info. Since I have 5 tables with a total of 190
fields, that means I would have to create 5 new tables and 190 append
queries. I think I will go back to the requestor and see if they really need
the STDev answer.

Thanks again.
 
You might be able to create queries that normalize the fields so that you
can calculate the StDev, rather than requiring new tables.

SELECT Field1
FROM MyTable
UNION
SELECT Field2
FROM MyTable
UNION
....

--
Doug Steele, Microsoft Access MVP

(no e-mails, please!)
 

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

Similar Threads

StDev 2
call function in query 3
#Error when using stDev in query 1
Correct placement of AND..... 2
stdev calculation error 3
Row level statistics 2
Run-time error '3075': 3
result in each line in one query? 2

Back
Top