Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
I have a client base with two measures: Sellout Value and Sellout Value Last Year, like below:
Sellout Value = SUM(SELLOUT_TABLE[SELLOUT_VALUE])
Sellout Value Last Year = CALCULATE([Sellout Value],PREVIOUSYEAR(CALENDAR[Date]))
An IF measure was created to categorize clients to be rescued, following the logic of those who bought last year but didn’t buy this year.
Client to Rescue = IF([Sellout Value]<=0&&[Sellout Value Last Year]>0,"YES","NO")
The challenge here is to create a measure that counts and consolidate the number of clients which is categorized as a client to be rescued. The measure below was created but the return is resulting as blank.
Clients to Rescue = COUNTROWS(FILTER(ADDCOLUMNS(SUMMARIZE(SELLOUT_TABLE, SELLOUT_TABLE [CLIENT_CODE]), "Sellout Value", [Sellout Value], " Sellout Value Last Year", [Sellout Value Last Year]),[Client to Rescue]="YES"))
Is there any fix in the DAX formulas used or in the base to result the count correctly?
Solved! Go to Solution.
Hi @Higoricardo ,
Here are the steps you can follow:
1. Create measure.
Flag =
var _table1=
SUMMARIZE(ALLSELECTED('Table'),[Client Code],"Measure",[Client to Rescue])
var _table2=
FILTER(
_table1,[Measure]="YES")
return
IF(
MAX('Table'[Client Code]) in SELECTCOLUMNS(_table2,"test",[Client Code]),1,BLANK())
Clients to Rescue =
CALCULATE(DISTINCTCOUNT('Table'[Client Code]),ALLSELECTED('Table'))
2. Place [Flag]in Filters, set is=1, apply filter.
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Higoricardo ,
Here are the steps you can follow:
1. Create measure.
Flag =
var _table1=
SUMMARIZE(ALLSELECTED('Table'),[Client Code],"Measure",[Client to Rescue])
var _table2=
FILTER(
_table1,[Measure]="YES")
return
IF(
MAX('Table'[Client Code]) in SELECTCOLUMNS(_table2,"test",[Client Code]),1,BLANK())
Clients to Rescue =
CALCULATE(DISTINCTCOUNT('Table'[Client Code]),ALLSELECTED('Table'))
2. Place [Flag]in Filters, set is=1, apply filter.
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Higoricardo ,
So, I'm assuming you want to get the number of clients that would have been YES client to rescue. You should be able to achieve this using the following formula.
Number of Clients to Rescue =
COUNTROWS(
FILTER(
VALUES( SELLOUT_TABLE[CLIENT_CODE] ),
[Client to Rescue] = "YES"
)
)
Not to sure on your model structure etc. but based on what I see above this should work. Let me know how you get on.
Hope it helps,
Kris
Hi @kriscoupe !
Thank you for answering, but it didn't work. It's returning just 1 client and as we can see in the base, there are more than one client categorized as to be rescued.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
25 | |
20 | |
20 | |
14 | |
13 |
User | Count |
---|---|
43 | |
37 | |
25 | |
24 | |
22 |