Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hola team,
Tengo una duda de cómo poder contar un dato si cumple con 3 condiciones.. El dato que quiero contar esta en la columna "Call: Ref" y para contarlo, este debe de tener en la columna "Survey" los siguientes criterios: (VISIBILITY, PROMOCION, COMPETITION), si no cuenta con estos 3 campos, entonces no cuenta la "Call: Ref".
Adjunto imagen con 2 cosos, uno cumpliendo (recuadro amarillo) y el otro no cumpliendo (recuadro rojo).
De antemano, muchas gracias.
Solved! Go to Solution.
@Anonymous , Try a measure like
countx(filter(summarize(filter(Table, Table[Survey] in {"VISIBILITY" , "PROMOTION", "COMPETITION"}), Table[Call: Ref], "_2", distinctCOUNT(Table[Survey])) , [_2] =3),[Call: Ref])
@Anonymous , Try a measure like
countx(filter(summarize(filter(Table, Table[Survey] in {"VISIBILITY" , "PROMOTION", "COMPETITION"}), Table[Call: Ref], "_2", distinctCOUNT(Table[Survey])) , [_2] =3),[Call: Ref])
Thank you very much @amitchandak , it's hard for me to understand the operation of the DAX "summarize" and the filters within the function, I tried with that function but I couldn't find the right way. Thanks for the information.