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

Divide IF value is over a certain amount

n

 

6 REPLIES 6
v-karpurapud
Community Support
Community Support

Hi @elliswoods 

We have not received a response from you regarding the query and were following up to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. If my response has addressed your query, please accept it as a solution and give a 'Kudos' so other members can easily find it.

Thank you for your understanding and participation.

Hi @elliswoods 

We haven’t heard from you on the last response and was just checking back to see if you have a resolution yet. In case if you have any resolution please do share that same with the community as it can be helpful to others.Should you need further assistance in the future, we encourage you to reach out via the Microsoft Fabric Community Forum and create a new thread. We’ll be happy to help.

 

Thank you for your understanding and participation.

v-karpurapud
Community Support
Community Support

Hi @elliswoods 

Could you please confirm if your query have been resolved the solution provided by @rohit1991 & @slorin ? If they have, kindly mark the helpful response and accept it as the solution. This will assist other community members in resolving similar issues more efficiently. If not , kindly share the detailed information regarding the issue.

Thank you

rohit1991
Super User
Super User

Hi @elliswoods ,

There's no direct DIVIDEIF function in Power Query, but you can easily achieve this using a conditional column or a simple custom column with an if statement. Here's a quick workaround:

 

In Power Query, add a Custom Column with this formula:

= Table.TransformColumns(
    YourPreviousStep,
    {{"Amount", each if _ > 100 then _ / 52.143 else _}}
)

 

Replace YourColumnName with your actual column name. This will divide the value by 52.143 only if it's over 100, and leave it unchanged otherwise. You can then remove or replace the original column as needed.

 


Did it work? ✔ Give a Kudo • Mark as Solution – help others too!
slorin
Super User
Super User

It's hard to answer without knowing your data and previous steps

Stéphane

slorin
Super User
Super User

Hi @elliswoods 

 

= Table.TransformColumns(Your_Source,{{"Your_Column", 
each if _< 100 or _ = null or _ = "" then _ else _/52.143, type number}})

Stéphane

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 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