Forum Discussion

ptnewman's avatar
ptnewman
Frequent Visitor
9 years ago
Solved

sumx filter issue

i have a table that has sales aggregated by month.  The table has 5 columns: month end date product name beginning sales amount ending sales amount sales delta amount   i am trying to show th...
  • ptnewman's avatar
    ptnewman
    9 years ago

    Eventually tracked down an excel jockey and he provided the answer.  really simple ...

     

    Sales Beginning = CALCULATE (

         SUM ( 'sales_agg'[beginning sales amount] ),

         FIRSTDATE('sales_agg'[begin_sales_amt])

    )