A
ardi
Hello,
I have created my pivot table with this MS Access query ,
transform max(value)
select hour from mytable group by label
pivot label
below is the Table output from pivot table query :
Hour A B C
1 15 14 21
2 22 23 24
3 21 33 11
4 10 10 10
I would like to added one columns with this simple formula (A+B +C )/
3
so the output like this.
Hour A B C Avg
1 15 14 21 16.67
2 22 23 24 23
3 21 33 11 ....
4 10 10 10
based on that formula .. Is there
a way to do that?. Please let me know.
Thanks in advance
I have created my pivot table with this MS Access query ,
transform max(value)
select hour from mytable group by label
pivot label
below is the Table output from pivot table query :
Hour A B C
1 15 14 21
2 22 23 24
3 21 33 11
4 10 10 10
I would like to added one columns with this simple formula (A+B +C )/
3
so the output like this.
Hour A B C Avg
1 15 14 21 16.67
2 22 23 24 23
3 21 33 11 ....
4 10 10 10
based on that formula .. Is there
a way to do that?. Please let me know.
Thanks in advance