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

Get Fabric certified for FREE! Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Need DAX to replace excel function

 

Hello folks,

 

I have this below excel function where i need to have dax to it in power bi, how can it be written?

 

=SUMPRODUCT(G2:G16,$F2:$F16)/SUMIF(G2:G16,">0",$F2:$F16)

G = Tier

F= Product weight

 

Thanks

shekar

 

 

2 REPLIES 2
V-lianl-msft
Community Support
Community Support

Hi @Anonymous ,

 

The SUMX function will allow you to sum things across tables.It may like SUMPRODUCT in Excel.

You could try to create a measure like this:

Measure = 
var sum_p = CALCULATE(SUMX(Sheet1,Sheet1[Units Sold]*Sheet1[Sale Price]))
var sum_if = CALCULATE(SUM(Sheet1[Sale Price]),FILTER(ALL(Sheet1),Sheet1[Units Sold]<1000))
return DIVIDE(sum_p,sum_if,0)

You can also refer to these thread:

https://community.powerbi.com/t5/Desktop/Sumproduct-formula-in-PowerBI/m-p/696519 

https://community.powerbi.com/t5/Power-Query/Sumproduct-with-Power-Query/td-p/1012427 

 

Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

parry2k
Super User
Super User

@Anonymous it will be easier if you throw sample data with the expected output.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 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.