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 dev...
- 8 years ago
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
v-yulgu-msft
8 years agoMicrosoft 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
- rhborders8 years agoHelper I
Thank you!