M
Mark
I have a query which displays N different fields:
Date Par1 Par2 Par3 ... ParN
.... $10 $20 $30 .... ...
.... .... .... ... .... ...
I would like to design a query that calculates basic statistics of
these fields (Avg, Var, Stdev, ..) and displays them in the following
way:
Var Avg Var StDev
Par1 ... ... ....
Par2 ... ... ....
Par3 ... ... ....
..... ... ... ....
ParN ... ... ....
Currently, a query computes these statistics, but all results are
lined up in a single row (ie. Par1Avg, Par1Var, Par1StDev, Par2Avg,
Par2Var, etc..)
Is there a clever way to design this query so that the results will be
displayed columnwise a shown above?
Thanks for any suggestion.
Date Par1 Par2 Par3 ... ParN
.... $10 $20 $30 .... ...
.... .... .... ... .... ...
I would like to design a query that calculates basic statistics of
these fields (Avg, Var, Stdev, ..) and displays them in the following
way:
Var Avg Var StDev
Par1 ... ... ....
Par2 ... ... ....
Par3 ... ... ....
..... ... ... ....
ParN ... ... ....
Currently, a query computes these statistics, but all results are
lined up in a single row (ie. Par1Avg, Par1Var, Par1StDev, Par2Avg,
Par2Var, etc..)
Is there a clever way to design this query so that the results will be
displayed columnwise a shown above?
Thanks for any suggestion.