Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
6 years ago
Solved

Make a matrix showing the difference between a value and count

Hey guys, I am struggling with this problem. In my dataset I have one table with the product family, date (of sale), month and code: Family  Date  Month  Code A      4/12/20   APR       10 B  ...
  • Greg_Deckler's avatar
    Greg_Deckler
    6 years ago

    Anonymous What about a measure like:

    Measure = 
      VAR __Month = MAX('Forecast'[Month])
      VAR __Family = MAX('Forecast'[Family])
      VAR __Forecast = MAX('Forecast',[Value])
      VAR __Sales = COUNTROWS(FILTER('Sales',[Month]=__Month && [Family]=__Family))
    RETURN
      __Forecast - __Sales
    

     This makes some assumptions about your visual.