Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Solved! Go to Solution.
HI @jianlong
MSP_min_serv =
VAR msp_m =
SELECTEDVALUE ( _Min_MSP[Min_Service] )
VAR _T =
SUMMARIZE ( MSP, MSP[CLNT_LABEL], "SER", COUNTA ( MSP[SERVDT] ) )
VAR _A =
FILTER ( _T, [SER] > msp_m )
RETURN
COUNTROWS ( _A )
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/
Thank you very much for your help, this works well. I wonder if you can share the reason why mine dax does not work?
HI @jianlong
MSP_min_serv =
VAR msp_m =
SELECTEDVALUE ( _Min_MSP[Min_Service] )
VAR _T =
SUMMARIZE ( MSP, MSP[CLNT_LABEL], "SER", COUNTA ( MSP[SERVDT] ) )
VAR _A =
FILTER ( _T, [SER] > msp_m )
RETURN
COUNTROWS ( _A )
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
LinkedIn: www.linkedin.com/in/vahid-dm/