Forum Discussion
Groupby with different calculations
- 3 years ago
Hi Wedding55 ,
According to your description, I create a sample.
And create measures like yours, finally get the correct result.
May I know before you put "type" in the visual, is there a single row or two rows of customer 100204? If there're two rows, I think it's not the problem of "type".
Or you can try to modify the formula like this:
digital = COUNTROWS ( FILTER ( ALL ( 'Cases' ), 'Cases'[customer] = MAX ( 'Cases'[customer] ) && 'Cases'[organisation] = "Org1" && 'Cases'[tc] = 1 ) )total = COUNTROWS ( FILTER ( ALL ( 'Cases' ), 'Cases'[customer] = MAX ( 'Cases'[customer] ) && 'Cases'[tc] = 1 ) )I attach my sample below for your reference.
Best Regards,
Community Support Team _ kalyjIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Maybe this explanation helps:
I have 1 table:
| casenumber | customer | type |
| 1 | 100084 | online |
| 2 | 100075 | offline |
| 3 | 100084 | offline |
| 4 | 100085 | online |
| 5 | 100085 | online |
the result should look like this:
| customer | type |
| 100075 | offline |
| 100084 | mix |
| 100085 | online |
The special thing is to get the type "mix" because its not existing in the original table but if i have the same customer several times with different types i want in the result table only one row for this customer with the type "mix".
Thanks in advance 🙂