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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Summarize with filters

Hello Everyone

 

I want to create a sumarized table with certain information given by a specific column, I need the same table but only with the options marked.

But when I do this: SC_PED = SUMMARIZE(FILTER(SD_PEDIDOSBLOQUEOS;SD_PEDIDOSBLOQUEOS[CLASE_DOCUMENTO]="KE");SD_PEDIDOSBLOQUEOS[CLASE_DOCUMENTO])

I can only filter one option and I need 6

 pedidos.PNG

 

If someone knows how to extract the same table but only with the marked options please!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@Anonymous,

Please change your DAX  to the following:

SC_PED = SUMMARIZE(FILTER(SD_PEDIDOSBLOQUEOS;SD_PEDIDOSBLOQUEOS[CLASE_DOCUMENTO]in {"KE";"KB";"ZP01";"ZP02";"ZP07";"ZP08"});SD_PEDIDOSBLOQUEOS[CLASE_DOCUMENTO]).



Regards,
Lydia

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

@Anonymous,

Please change your DAX  to the following:

SC_PED = SUMMARIZE(FILTER(SD_PEDIDOSBLOQUEOS;SD_PEDIDOSBLOQUEOS[CLASE_DOCUMENTO]in {"KE";"KB";"ZP01";"ZP02";"ZP07";"ZP08"});SD_PEDIDOSBLOQUEOS[CLASE_DOCUMENTO]).



Regards,
Lydia

affan
Solution Sage
Solution Sage

Hi @Anonymous

 

 

 

It seems that the 'Group by' can resolve your issue in the query editor. If you can share the pbix file with me I hope I can share the solution with you

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors