Forum Discussion
Anonymous
3 years agoNot applicable
New table based on a query
Hi, I'm new to PowerBI Web and would like to create a new table based on the result of a query. This is what I have: let Source = INTAKT_VIEW, #"Grouped rows" = Table.Group(Source, {"Period...
- 3 years ago
Hi Anonymous ,
You can try this method:
Use the Group By:
The result is:
Or you can download the Power BI Desktop:
Get Power BI Desktop - Power BI | Microsoft Learn
Hope this helps you.
Best Regards,
Community Support Team _Yinliw
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
3 years agoNot applicable
Two tables. How can I save the aggregated table?
Original table
| Period | SumIntakt
|
| 1 | 20 |
| 1 | 20 |
| 2 | 30 |
Aggregated table
| Period | SumIntakt |
| 1 | 40 |
| 2 | 30 |
NikhilChenna
Skilled Sharer
3 years agoHi Anonymous , The best solution is the below.
By creating a measure.
Measure = CALCULATE(SUM('Table'[SumIntakt]),ALLEXCEPT('Table','Table'[Period]))
Regards,
Nikhil Chenna
Appreciate with a Kudos!! (Click the Thumbs Up Button)
Did I answer your question? Mark my post as a solution!