Forum Discussion

Brad333's avatar
Brad333
New Member
3 years ago

Help with Matrix

Hi,

 

I have a matrix that has data all coming from the same data file but when i add date it just shows the overall total on each as shown below rather than splitting it by the totals for each day, the figures are created fields though done like this below 

 

BC_Customer = CALCULATE(COUNT('app'[state]),
FILTER(ALL('app'), [state] = "SUCCESSFUL"))

 

 

1 Reply

  • Arul's avatar
    Arul
    Super User

    Brad333 ,

    Please remove the Filter and ALL function from your formula and try,

    BC_Customer = CALCULATE(COUNT('app'[state]),[state] = "SUCCESSFUL")

     Thanks,