Forum Discussion
rhborders
8 years agoHelper I
Grouped STDEV
Hello,
I am currently working on getting a column to return a grouped STDEV and having trouble finding the correct way to write the formula. My goal is to have the column return the standard deviation for a group of averages based on this group by:
If any more information is needed please let me know.
Thanks
Hi rhborders,
Please refer to below M code:
#"Grouped Rows" = Table.Group(#"Changed Type", {"Category"}, {{"New col", each List.StandardDeviation([Value]), type number}})Best regards,
Yuliana Gu
2 Replies
- v-yulgu-msftMicrosoft Employee
Hi rhborders,
Please refer to below M code:
#"Grouped Rows" = Table.Group(#"Changed Type", {"Category"}, {{"New col", each List.StandardDeviation([Value]), type number}})Best regards,
Yuliana Gu
- rhbordersHelper I
Thank you!