Forum Discussion
Anonymous
5 years agoNot applicable
Group Measures by Year
Hello Friends, I have 3 measures Toys Sales, Clothes Sales and Shoe Sales by Location and Year as below in a cross tab. I want to show the measures together by Year as below. This is P...
- 5 years ago
Hi, Anonymous
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
Table:
Measures:
Clothes Sales Measure = CALCULATE( SUM('Table'[Sales]), FILTER( 'Table', [Category]="Clothes Sales" ) )Shoes Sales Measure = CALCULATE( SUM('Table'[Sales]), FILTER( 'Table', [Category]="Shoes Sales" ) )Toys Sales Measure = CALCULATE( SUM('Table'[Sales]), FILTER( 'Table', [Category]="Toys Sales" ) )Result:
If i misunderstand your thoughts, please show us some sample data and expected result with OneDrive for business. Do mask sensitive data before uploading. Thanks.
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
MattAllington
Community Champion
5 years agoYou can do this is you write one measure "sales", and then use a column from your model for "category" and "year"