Create Average within measures

Djangom

New Member
Joined
Jul 8, 2014
Messages
8
HTML:
Hi All,
I am wondering if its possible to get an average list of created measure.

Basically I have powerpivot flat table that have the following list :

List Measure1 Measure2 Measure3 Measure4 Measure4
PHP:
aa 3 4 2 0 0
bb 2 1 8 4 2

Would like to have

List Measure1 Measure2 Measure3 Measure4 Measure4 Measure 5

aa 3 4 2 0 0 3
bb 2 1 3 8 2 4


Measure5 = avg( measure1:measure4)



Thanks all
HTML:
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Not directly, when the data is across columns like that. But certainly you can just... (Measure1+Measure2+Measure3+Measure4+Measure5) / 5 ?
 
Upvote 0
Thanks Scott - That will work if there is a way we can create a counter for the divisor to skip the zero -es.
another words = 3+4+2+0+0/5 = 1.8 will not be correct

Any idea if we can count non empty measures and the divide.

i.e (3+4+2+0+0/3 =3)

Thanks
 
Upvote 0
This all becomes WAY easier if you can unpivot your data into a single column of values (and if needed, another column that describes the type, say "Measure1"). Any chance that can happen?
 
Upvote 0
you should follow Scott's proposal if possible. If you cant and need to keep that column structure you can build the counter with an IF statement

Counter = IF(Measure1>0,1,0)+IF(....
 
Upvote 0
Thank you - Scott & Tianbas.
Actually I want keep the structure - IF(Measure1>0,1,0) works GREAT!!

Thanks again
 
Upvote 0

Forum statistics

Threads
1,215,883
Messages
6,127,544
Members
449,385
Latest member
KMGLarson

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top