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.
Wedding55 , if these are measure then the below need to be a measure [count of digital products] , [count of total products],
type = SWITCH(TRUE(),
[count of digital products] = [count of total products], "online",
[count of offline products] = [count of total products], "offline",
"mix")
if you need this slicer or axis- follow the approach in this video
Customer Retention with Dynamic Segmentation, New/Lost/Retain Customer Count: https://www.youtube.com/watch?v=W4EF1f_k6iY
Hello amitchandak,
yes these are measures but my problem is the aggregation.
When i choose the column "type" and i have a customer with digital and offline cases then powerbi shows me two rows for one customer with type "online" and "offline". But in this cases i want one row with the type "mix". Do you understand my problem or should i explain it more detailed?
Best Regards