Forum Discussion
Anonymous
6 years agoNot applicable
How to Create a New Table from existing table using IN POWER QUERY NOT IN Data model
How to Create a New Table from existing table using EDIT QUERY in POWER BI? IN POWER QUERY NOT IN DATA MODEL Example : Table A Name ID Amount Product surya 111 324 Milk surya 11...
- 6 years ago
Hi Anonymous ,
I also use the option "Group By" to do it. You could have a try.
let Source = Table, #"Grouped Rows" = Table.Group(Source, {"Name", "ID"}, {{"Count", each Table.RowCount(Table.Distinct(_)), Int64.Type}}), #"Removed Columns" = Table.RemoveColumns(#"Grouped Rows",{"Count"}) in #"Removed Columns"
mhossain
6 years agoSolution Sage
Anonymous
Multiple solutions here, all of them are great, you can also consider
Right click on your table in powerquery ==> Duplicate ==> on this new table click 'Group BY' in the tool bar.