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
Hi, guys!
I think it's a simple error but I couldn't solve it.
I need to know how many customers purchased two specific products in the month, such as Coke and Pepsi, filtered by Sector.
I did it in 3 steps. Fist I did a SUMMARIZECOLLUMN, then GROUPBY and finally COUNTX.
When I do it in DAX Studio works fine, but when I put it in a table that contains the Key_Sector column doesn't.
What am I doing wrong?
Qualified Purchase =
VAR Table1 =
ADDCOLUMNS(
SUMMARIZECOLUMNS(
Clientes[Key_Sector],
Produtos[Product],
Clientes[Key_Client],
KEEPFILTERS( TREATAS( {"COKE","PEPSI"}, Produtos[Product] ))),
"Qtd", [PDV | Cobertura]
)
VAR Table2 =
FILTER(
GROUPBY(Table1, [Key_Sector], [Key_Client], "Cob", SUMX(CURRENTGROUP(), [PDV | Cobertura])),
[Cob] = 2 )
RETURN
COUNTX(Table2, [Key_Sector])
Hi @PedroAB ,
It's hard to check the formula without any data. Please share some sample data so that we could do some test.
Best Regards,
Jay
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.