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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
kkaushi4
Frequent Visitor

Is there a way to create measure to Sum of Product measure?

I have Table A

 

SnapshotID.1ID.2Avg Demand
2/12/20241A20
2/12/20242A30
1/12/20243B40

 

Table B

 

SnapshotID.1LT
2/12/202412
2/12/202423

 

 There is a data connection between table A & B on ID.1

 2 Slicers to select the snapshot for Table A & Table B

 

 I have created a Measure to calculate LT* Avg Demand

 

Now I want to create another measure which do WT LT* Avg Demand i.e., SUM(LT*Avg Demand) instead of SUM(LT)* SUM(Avg Demand) at ID.2 level.

Sort of do first row wise calculation of LT* Avg Demand and then sum it at ID.2 level.

As current measure is doing SUM(LT)*SUM(Avg Demad).

 

Thanks

Kartik

1 ACCEPTED SOLUTION
tharunkumarRTK
Solution Sage
Solution Sage

You can achieve it using SUMX terative function. Assuming your table B is many side of one to many relationship,

Sumx(tableb, related(tablea[Avg Demand]) * tableb[LT]) 

try the pattern and dont forget to accept my solution if it works.

Tharun

View solution in original post

1 REPLY 1
tharunkumarRTK
Solution Sage
Solution Sage

You can achieve it using SUMX terative function. Assuming your table B is many side of one to many relationship,

Sumx(tableb, related(tablea[Avg Demand]) * tableb[LT]) 

try the pattern and dont forget to accept my solution if it works.

Tharun

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors