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! Learn more

Reply
romovaro
Responsive Resident
Responsive Resident

Adding new requirement formula

 

Trying to add a new requirement in the formula

Formulas are working fine but now I need to add an extra filter

 

&& (Task = "IPM HandOff) and Task Status Closed

 

Tried to add:

 

CALCULATE(COUNTROWS(CELERGO_12062021V1),CELERGO_12062021V1[TASK] ="IPM HandOff" && CELERGO_12062021V1[TASK_STATUS]="Closed"))) but is not working

 

Could you help me? 

 

Total Tasks = CALCULATE ( COUNTA ( CELERGO_12062021V1[TASK] ), CONTAINSSTRING ( CELERGO_12062021V1[TASK], "Partner Acknowledgement"))….+ Extra Filter

Showing Total of tasks that contains the string “Partner Acknowledgement” and have task “IPM HandOff” closed.

 

 

 

Partner Acknowledgment with GLD = CALCULATE ( COUNTA ( CELERGO_12062021V1[SCHEDULED] ), CONTAINSSTRING ( CELERGO_12062021V1[TASK], "Partner Acknowledgement" )) ….+ Extra Filter

Showing Total of tasks that contains the string “Partner Acknowledgement” , have a schedule date and have task “IPM HandOff” closed.

 

 

Partner Acknowledgment with GLD & Closed = CALCULATE ( COUNTA ( CELERGO_12062021V1[SCHEDULED] ), CONTAINSSTRING ( CELERGO_12062021V1[TASK], "Partner Acknowledgement" ) && CELERGO_12062021V1[TASK_STATUS] = "Closed" ) ….+ Extra Filter

Showing Total of tasks that contains the string “Partner Acknowledgement” and task status Closed, have a schedule date and have task “IPM HandOff” closed.

 

 

Thanks

3 REPLIES 3
v-jingzhang
Community Support
Community Support

Hi @romovaro 

 

This topic is similar to this thread you posted earlier, can you help close this one? Thank you. You can accept a reply as solution to close it. 

 

Best Regards,
Community Support Team _ Jing

romovaro
Responsive Resident
Responsive Resident

Hi amitchandak

 

In the formula below it's missing the fields with the string "partner Acknowledgment"

 

CALCULATE(COUNTROWS(CELERGO_12062021V1),Filter( CELERGO_12062021V1, CELERGO_12062021V1[TASK] ="IPM HandOff" && CELERGO_12062021V1[TASK_STATUS]="Closed"))

 

 

Total Tasks = CALCULATE ( COUNTA ( CELERGO_12062021V1[TASK] ), CONTAINSSTRING ( CELERGO_12062021V1[TASK], "Partner Acknowledgement")).... and I am trying to add...the filter to add...and 

CELERGO_12062021V1[TASK] ="IPM HandOff" && CELERGO_12062021V1[TASK_STATUS]="Closed")
 
 
 
My problem is adding this "extra requirement" in the 3 formulas above.

CELERGO_12062021V1[TASK] ="IPM HandOff" && CELERGO_12062021V1[TASK_STATUS]="Closed")

amitchandak
Super User
Super User

@romovaro ,It should work , try like

CALCULATE(COUNTROWS(CELERGO_12062021V1),Filter( CELERGO_12062021V1, CELERGO_12062021V1[TASK] ="IPM HandOff" && CELERGO_12062021V1[TASK_STATUS]="Closed"))

 

or

 

Partner Acknowledgment with GLD = CALCULATE (COUNTA ( CELERGO_12062021V1[SCHEDULED] ), filter(CELERGO_12062021V1, CONTAINSSTRING ( CELERGO_12062021V1[TASK], "Partner Acknowledgement" ))
)

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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