Forum Discussion
How come?!
Turnover = sum('Main data'[TURNOVER.])
Turnover on client = CALCULATE([Turnover];VALUES('Main data'[Payer id]);all('Main data'[Turnover cohort 8000]))
Turnover cohort 8000 = SWITCH(TRUE();
[Turnover on client]<2000;"0-2000";
AND([Turnover on client]>= 2000;[Turnover on client]<4000);"2000-4000";
AND([Turnover on client]>= 4000;[Turnover on client]<6000);"4000-6000";
AND([Turnover on client]>= 6000;[Turnover on client]<8000);"6000-8000";
[Turnover on client]>= 8000;"8000+")
Turnover on client is correct but I got 2 lines per client with Service Utilities!
How Can I receive correct table where line with Utilities will be in the "4000-6000" cohort?!
Help me, please!
3 Replies
- UstinovdlHelper I
Data like this:
- v-chuncz-msftCommunity Support
The values of [Transactions] are different.
- UstinovdlHelper I
I don't undestand You...