Forum Discussion
da_sour
8 years agoRegular Visitor
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 ...
- 8 years ago
To get the expected result, you may use EARLIER Function to add a calculated column.
Column = COUNTROWS ( FILTER ( Table1, Table1[Name] = EARLIER ( Table1[Name] ) ) )
v-chuncz-msft
8 years agoCommunity Support
To get the expected result, you may use EARLIER Function to add a calculated column.
Column = COUNTROWS ( FILTER ( Table1, Table1[Name] = EARLIER ( Table1[Name] ) ) )
- da_sour8 years agoRegular Visitor
it works!
thanks a lot sam!