Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Subtotal Aggregations

Hi,   I have a dataset with the following tables, among others: Month, Business Unit, Product Line, and Pounds Sold. I'm trying to create at table where the pounds are aggregated across a product l...
  • d_gosbell's avatar
    7 years ago

    If Business Unit is in it's own table that has a 1-to-many relationship to Pounds Sold, this should be as simple as the following:

     

    CALCULATE( SUM( 'Pounds Sold'[Pounds Sold] ), ALL('Business Unit') )