Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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.
Solved! Go to Solution.
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]))
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
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]))
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Can you provide a small sample of your data?
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 81 | |
| 73 | |
| 46 | |
| 35 |