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
sridevi
Helper I
Helper I

Need help to calculate measuring values without apply slicer filter value

Hi,

 

Is it possible to apply without filtering in my own formula measure column.

 

I am used below formula for my measure column hit rate.

 

Hit rate= No. of units of prod release / total no. of units

 

Here all above variables are my own measures values.  I dont want to apply slicer fiter value for total.no of units value while I am selecting product release value filter slicer. How can I restrict my filter in total no.of units measurement.

 

Example: No. of units of prod release value should be calcuated based on my slicer selection value and total no. of units value calculated count all the units from table without applying slicer selection.

 

Could you please help me to resolve this issue if anyone knows?

 

Thanks in advance.

 

Regards

Sridevi

1 ACCEPTED SOLUTION
ankitpatira
Community Champion
Community Champion

@sridevi ALL() function within DAX is your help then. Here's the article on it. Basically it lets you ignore any filter applied. So you can say

 

Hit rate= No. of units of prod release / ALL(tableName[total no. of units ColumnName])

View solution in original post

2 REPLIES 2
ankitpatira
Community Champion
Community Champion

@sridevi ALL() function within DAX is your help then. Here's the article on it. Basically it lets you ignore any filter applied. So you can say

 

Hit rate= No. of units of prod release / ALL(tableName[total no. of units ColumnName])

@ankitpatira Thanks a lot. Its working fine for me.

 

 

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

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!

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