Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
PedroAB
Regular Visitor

DAX SummarizeColummns() and AddMissingItens() error

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])

 

1 REPLY 1
v-jayw-msft
Community Support
Community Support

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

Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Fabric Monthly Update - May 2024

Check out the May 2024 Fabric update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.