Forum Discussion
axel_BI
6 years agoHelper I
Pivoting Data with a measure
Hi, my data is presenting me the sales per article per day per location. Like this. Location|Date|Article_Nr|Sales 1000 05.08.2019 100 4...
- 6 years ago
You can use summarize:
Summarize(Table;
Table[Location];
Table[Date];"Sum";Sum(Sales);
"AVG";average(Sales))