Forum Discussion

depple's avatar
depple
Helper III
7 years ago
Solved

Aggregation - New Table or Measure

First, I am a Power BI novice and please bear over with my scattered skills.   I have a Table with the following columns:   Week | Supplier | Store | Manufacturer | Sales   As there are many co...
  • themistoklis's avatar
    themistoklis
    7 years ago

    depple

     

    Create this new measure and add it on Values area in the graph:

     

    % Share = 
    VAR Volume =
        SUM('Table'[Sales])
    VAR AllVolume =
        CALCULATE ( SUM('Table'[Sales]),ALL('Table'[Manufacturer]) )
    RETURN
        DIVIDE ( Volume, AllVolume )