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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
chalapathy
Frequent Visitor

Target value to a column in table

I have a parameter setup for user to input target production. I have a table that have percent allocation and associated price.

Something similar to the following. Based on target, I would like to display Weighted average Price in a Card.

 

Tried Using measures for multiplying. While the Qty and Ext display properly, the Wgt. Avg is not returning proper value.

Can an

 

Target:3200Parameter Input 
     
TABLECalculated Columns
Item% AllocUnit PQty (Target*% alloc)Ext. (Qty*Unit P)
A25%22                              800                17,600
B0%40                                 -                           -  
C40%30                           1,280                38,400
D15%0                              480                         -  
E20%45                              640                28,800
     
                              3,200                84,800
     
  Wgt. Avg P 26.5 

 

 

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @chalapathy ,

Here are the steps you can follow:

1. Create measure.

Wgt. Avg P =
DIVIDE(
    SUMX(ALL('Table'),[Qty] * [Unit P])
    ,
    SUMX(ALL('Table'),'Table'[%Alloc])* 3200)

2. Result:

vyangliumsft_0-1656645285371.png

 

Best Regards,

Liu Yang

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

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi  @chalapathy ,

Here are the steps you can follow:

1. Create measure.

Wgt. Avg P =
DIVIDE(
    SUMX(ALL('Table'),[Qty] * [Unit P])
    ,
    SUMX(ALL('Table'),'Table'[%Alloc])* 3200)

2. Result:

vyangliumsft_0-1656645285371.png

 

Best Regards,

Liu Yang

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

Thank  you. Sorry for the late reply. It was long weekend and holidaying.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Top Solution Authors