AVGW Formula for Multiple Cells in One Column
I am trying to apply weights to multiple cells in a "% Completed" column.
My current formula just averages out the values for the selected cells:
=AVG([% Complete]3, [% Complete]5, [% Complete]7, [% Complete]9, [% Complete]11, [% Complete]53)
I'd like to apply weights of 10% to row 3, 5, 7, 9, and 53 with a weight of 50% to row 11. I can't find a way to do this with the AVGW formula that allows me to select only these 6 cells. I tried to use the collect function but kept getting an unparseable error.
Best Answer
-
You could try something like:
=Sum([% Complete]3, [% Complete]5, [% Complete]7, [% Complete]9, [% Complete]11*5, [% Complete]53)/10
Answers
-
You could try something like:
=Sum([% Complete]3, [% Complete]5, [% Complete]7, [% Complete]9, [% Complete]11*5, [% Complete]53)/10
-
Thanks so much! That worked, simpler than I thought
Help Article Resources
Categories
Check out the Formula Handbook template!