Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

New column with Grouped Rowcount

Hi,

 

I have data like this:

 

IDCategory
AC1
AC2
AC2
BC1
BC1
BC2

 

I want an extra column with the rowcount for Category C1 within each group. So that I get a result like this:

GroupCategoryCategory C1 Count
AC11
AC21
AC21
BC12
BC12
BC22

 

I only got this far: 

CountValues = CALCULATE (COUNTROWS(Table), Table[Category] ="C1"). But this simply puts a 1 when the row category is C1.. it should be pretty easy but I can't find my answer anywhere..
  • Anonymous , Try a new Measure like


    calculate(COUNTROWS(Table), filter(allselected(Table) , Table[Group] = max(Table[Group]) && Table[Category] ="C1"))

3 Replies

  • Anonymous , Try a new Measure like


    calculate(COUNTROWS(Table), filter(allselected(Table) , Table[Group] = max(Table[Group]) && Table[Category] ="C1"))

    • Anonymous's avatar
      Anonymous
      Not applicable

      amitchandak Thank you for your reply! As a measure I see that it works, but I need is as a column, is there a posibility you think?

      • Anonymous's avatar
        Anonymous
        Not applicable

        Ah, I just used the measurement to add as a colum and that works perfectly :)!