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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
MurVeman
Helper I
Helper I

Summarize Table brining blank fields in the filter table, please help.

I am trying to create a Filter table using Summarize function, but the code is bringing blanks as shown on the table below, please help.

 

BPMNStatusCalculation =
SUMMARIZE(
TestEecution,
TestEecution[BPMN_CC],
"BPMNStatusDesc", CONCATENATEX(VALUES(TestEecution[Overall Status Description]),TestEecution[Overall Status Description],";"),
"MaxFlow", MAXX(TestEecution,TestEecution[Flow]),
"Pass/Fail",CONCATENATEX(VALUES(TestEecution[Pass/Fail/Inprogress]),TestEecution[Pass/Fail/Inprogress],";"))

 

Screen :- 

MurVeman_0-1703779482975.png

 

1 ACCEPTED SOLUTION
gadielsolis
Resolver III
Resolver III

Hello, 

 

If I understand correctly you should be able to fix this by using filter before the summarize, find belox an example:

FILTER(SUMMARIZE(
TestEecution,
TestEecution[BPMN_CC],
"BPMNStatusDesc", CONCATENATEX(VALUES(TestEecution[Overall Status Description]),TestEecution[Overall Status Description],";"),
"MaxFlow", MAXX(TestEecution,TestEecution[Flow]),
"Pass/Fail",CONCATENATEX(VALUES(TestEecution[Pass/Fail/Inprogress]),TestEecution[Pass/Fail/Inprogress],";")),
NOT(ISBLANK(TestEecution[BPMN_CC])))

 

View solution in original post

2 REPLIES 2
gadielsolis
Resolver III
Resolver III

Hello, 

 

If I understand correctly you should be able to fix this by using filter before the summarize, find belox an example:

FILTER(SUMMARIZE(
TestEecution,
TestEecution[BPMN_CC],
"BPMNStatusDesc", CONCATENATEX(VALUES(TestEecution[Overall Status Description]),TestEecution[Overall Status Description],";"),
"MaxFlow", MAXX(TestEecution,TestEecution[Flow]),
"Pass/Fail",CONCATENATEX(VALUES(TestEecution[Pass/Fail/Inprogress]),TestEecution[Pass/Fail/Inprogress],";")),
NOT(ISBLANK(TestEecution[BPMN_CC])))

 

@gadielsolis,

 

It worked, thanks a ton!

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors