StDev

J

jlute

I'm pretty sure this can be done but I'm tripping over it. Isn't it
possible to perform a StDev calculation on 2 column value of 1 row?
For example:

ID | Column1 | Column2 | StDev
123 | 10 | 125 | 81.3172

How do I write this expression in the query? I know you need to make
an alias but after that I'm lost after trying several things.

Your help is greatly appreciated. Thanks!
 
M

Michel Walsh

(column1 ^ 2 + column2 ^ 2 - 0.5* (column1 + column2) ^ 2 ) ^ 0.5



Vanderghast, Access MVP
 

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

Top