Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

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...
  • v-alq-msft's avatar
    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.