Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Solved! Go to Solution.
You could create measures
PRN count = CALCULATE(DISTINCTCOUNT(data[Persno]),ALLEXCEPT(data,data[City Pin Coad])) <25_1 = CALCULATE(DISTINCTCOUNT(data[City Pin Coad]),FILTER(data,[PRN count]<25))
Or create columns
flag = CALCULATE(DISTINCTCOUNT(data[Persno]),FILTER(ALL(data),data[City Pin Coad]=EARLIER(data[City Pin Coad]))) <25_column = CALCULATE(DISTINCTCOUNT(data[City Pin Coad]),FILTER(ALL(data),data[flag]<25))
Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You could create measures
PRN count = CALCULATE(DISTINCTCOUNT(data[Persno]),ALLEXCEPT(data,data[City Pin Coad])) <25_1 = CALCULATE(DISTINCTCOUNT(data[City Pin Coad]),FILTER(data,[PRN count]<25))
Or create columns
flag = CALCULATE(DISTINCTCOUNT(data[Persno]),FILTER(ALL(data),data[City Pin Coad]=EARLIER(data[City Pin Coad]))) <25_column = CALCULATE(DISTINCTCOUNT(data[City Pin Coad]),FILTER(ALL(data),data[flag]<25))
Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Based on your pbix file sample data, use this DAX formula for your <25 Measure