Forum Discussion

pieterhkruger's avatar
pieterhkruger
Frequent Visitor
7 years ago
Solved

Total by date category

Hi,

 

Using the following sample data:

DateGroupFILTER
01-May-19AFilter group 1
01-May-19AFilter group 2
01-May-19AFilter group 1
01-May-19BFilter group 1
01-May-19BFilter group 1
01-May-19BFilter group 2
02-May-19AFilter group 1
02-May-19AFilter group 1
02-May-19AFilter group 1
02-May-19AFilter group 2
02-May-19AFilter group 2
02-May-19AFilter group 2
02-May-19BFilter group 1
02-May-19BFilter group 2
03-May-19AFilter group 2
03-May-19AFilter group 2
03-May-19BFilter group 1
03-May-19BFilter group 1
03-May-19BFilter group 2
03-May-19BFilter group 2

 

I want to be able to create a table that looks like this:

DateGroupCount of Group & dateTotal count by date only
2019/05/01A36
2019/05/01B36
2019/05/02A68
2019/05/02B28
2019/05/03A26
2019/05/03B46

 

I am particularly interested in getting the values for the last column.  I suppose one would need to create a DAX measure.  How can one go about doing so?

  • hi, pieterhkruger 

    Just try this formula to add a measure

    Measure = CALCULATE(COUNTA(Table1[Group]),ALLEXCEPT(Table1,Table1[Date]))

    Result:

     

    Best Regards,

    Lin

2 Replies

  • v-lili6-msft's avatar
    v-lili6-msft
    Community Support

    hi, pieterhkruger 

    Just try this formula to add a measure

    Measure = CALCULATE(COUNTA(Table1[Group]),ALLEXCEPT(Table1,Table1[Date]))

    Result:

     

    Best Regards,

    Lin

  • jthomson's avatar
    jthomson
    Solution Sage

    Use countrows on the table the same way you'd make the first column, but you want to apply allexcept to the date column - this'll make the calculation disregard the group (and anything else for that matter) but still split it by date