Forum Discussion
rhborders
Helper I
8 years agoGrouped 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
Microsoft Employee
8 years agoHi 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
rhborders
Helper I
8 years agoThank you!