Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Divide chart values to total

Greetings everyone,   I got stuck in a problem with probably a simple solution.   I have a chart of products with actual selling(grey bars) and goal on selling(green bars).   I need to divide t...
  • Anonymous's avatar
    Anonymous
    7 years ago

    If ActualSelling is your measure,

     

    TotalSelling = 
    CALCULATE(
    [ActualSelling],
    ALL(Table[Product])
    )

    You can create another measure TotalGoalSelling by the same way

     

    Then you can create the final measure as = DIVIDE(ActualSelling,TotalSelling)