Forum Discussion
Mic1979
1 year agoPost Partisan
Count Occurence and Divide
Dear all, I have the table in the following link: https://docs.google.com/file/d/1x0EfK8yFfP3AKcuFiGLOV7SzbV-yz2Cn/edit?usp=docslist_api&filetype=msexcel What I need to do is: Count the n...
- 1 year ago
You may use below code
let Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content], #"Grouped Rows" = Table.Group(Source, {"Merged"}, {{"Count", each Table.RowCount(_)}, {"Result", each [Volumes]{0} / Table.RowCount(_)}}) in #"Grouped Rows"
Vijay_A_Verma
1 year agoMost Valuable Professional
You may use below code
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
#"Grouped Rows" = Table.Group(Source, {"Merged"}, {{"Count", each Table.RowCount(_)}, {"Result", each [Volumes]{0} / Table.RowCount(_)}})
in
#"Grouped Rows"- Mic19791 year agoPost Partisan
Wow many thanks for your help.