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
Anonymous
Not applicable

Multiplying Row Values

I have a table with a list of items column and a multiplier value (1.XX) column. Some of the items appear more than once, and I want to create a new table with the item listed once and the product of the multiplier values to get the total multiplier for each item.

 

I know this is a newb question, but I'm unsure how to do. Thanks.

1 ACCEPTED SOLUTION
v-jingzhang
Community Support
Community Support

Hi @Anonymous 

 

If you want something like PRODUCT funtion in Excel, there is also PRODUCT and PRODUCTX function in DAX. In this case, you can use below DAX code to create a new table. 

New Table = SUMMARIZE('YourTable','YourTable'[Item],"Total multiplier",PRODUCT('YourTable'[Multiplier]))

21102503.jpg

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

 

View solution in original post

2 REPLIES 2
v-jingzhang
Community Support
Community Support

Hi @Anonymous 

 

If you want something like PRODUCT funtion in Excel, there is also PRODUCT and PRODUCTX function in DAX. In this case, you can use below DAX code to create a new table. 

New Table = SUMMARIZE('YourTable','YourTable'[Item],"Total multiplier",PRODUCT('YourTable'[Multiplier]))

21102503.jpg

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

 

sm_talha
Resolver II
Resolver II

Can you provide a small sample of your data?

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