Forum Discussion

da_sour's avatar
da_sour
Regular Visitor
8 years ago
Solved

Error with Grouped Graph

  Hi, my name is damian and I have the following info.   Jack 10 Paul 20 Paul 10 Michael 30 Michael 20   The issue is that I have many names. I assemble a histogram without problems. but I ...
  • v-chuncz-msft's avatar
    8 years ago

    da_sour,

     

    To get the expected result, you may use EARLIER Function to add a calculated column.

    Column =
    COUNTROWS ( FILTER ( Table1, Table1[Name] = EARLIER ( Table1[Name] ) ) )