Forum Discussion
New table based on a query
- 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.
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 |
Hi Anonymous ,
There are three methods to solve this question:
Method 1:
New a measure:
Sumlntakt1 = CALCULATE(SUM('Table'[SumIntakt]),ALLEXCEPT('Table','Table'[Period]))
Method 2:
Method 3:
New a table:
Here is my PBIX file:
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.
- Anonymous3 years agoNot applicable
I got this:
Expression.Error: Token Literal expected.DetailsTableS = SUMMARIZE('INTAKT_VIEW','INTAKT_VIEW'[Period], "Sumlntakt", SUM('INTAKT_VIEW'[SumIntakt]))- v-yinliw-msft3 years ago
Community Support
Hi Anonymous ,
I think you use the formula in the Power Query, you should use it in the Desktop -> New table:
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.
- Anonymous3 years agoNot applicable
Hi,
I'm using the webversion so I don't have that function: