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
Hi Experts,
data set is like below.
and i pivot this tables in power query as below. How could i get the amount value with Volumn*Price(with every records multiple)? Please help.
Solved! Go to Solution.
Hi,
I am not sure how your datamodel looks like, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
If fixing the table structure is not allowed, the below may be the one of many ways to solve this.
Volume X Price: =
SUMX (
VALUES ( 'Calendar'[Year-Month sort] ),
CALCULATE ( SUM ( Data[Value] ), Data[KPI] = "Volume" )
* CALCULATE ( SUM ( Data[Value] ), Data[KPI] = "Price" )
)
Hi,
I am not sure how your datamodel looks like, but I tried to create a sample pbix file like below.
Please check the below picture and the attached pbix file.
If fixing the table structure is not allowed, the below may be the one of many ways to solve this.
Volume X Price: =
SUMX (
VALUES ( 'Calendar'[Year-Month sort] ),
CALCULATE ( SUM ( Data[Value] ), Data[KPI] = "Volume" )
* CALCULATE ( SUM ( Data[Value] ), Data[KPI] = "Price" )
)
Thanks.
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!