Forum Discussion

GQ00's avatar
GQ00
Icon for Helper III rankHelper III
6 months ago
Solved

Top 3 Average Sales mix

Hi,   I'm trying to highlight the revenue opportunity of aligning sales mix of certain products to top performing stores.   The fact salesitem table is related to tables such as Store, Product, D...
  • rajendraongole1's avatar
    6 months ago

    Hi GQ00  - your logic is correct conceptually, but the measures are being evaluated at Area Manager / Product Manager levels, not strictly at Store level.

    Top3 Mix =
    AVERAGEX(
    TOPN(
    3,
    ALLSELECTED(Store[Store]),
    [Mix %],
    DESC
    ),
    CALCULATE([Mix %])
    )

     

    use the above, ensures ranking happens only by Store, try the above logic, 

     

    Hope this give the right result and check , still if any pls shae some sample data to test it.