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
rishari
Frequent Visitor

Need help in optimizing Calculate divide with Filter function

Please help me to optimize the below measure. The visual is not even loading for the current measure

DAX Measure:

X_Percentage =
CALCULATE (

    DIVIDE ( Measure_A, Measure_B, 0),
    FILTER ( 'TableName', Calculated_column > 0 )
)

3 REPLIES 3
Anonymous
Not applicable

Hi @rishari ,

Please try below dax formula:

X_Percentage =
CALCULATE (
    DIVIDE ( Measure_A, Measure_B, 0 ),
    FILTER ( ALL ( 'TableName' ), Calculated_column > 0 )
)

If it also not work, please provide some more specific information? such as your desensitized example data and a screenshot of your desired results?

Thanks for your efforts & time in advance.

 

Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

johnt75
Super User
Super User

Its better not to filter an entire table when you can just filter a column. Try

X_Percentage =
CALCULATE (
    DIVIDE ( Measure_A, Measure_B, 0 ),
    'TableName'[Calculated_column] > 0
)

It was not working, that's why i used filter function

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