cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
ooctaviano
Frequent Visitor

sum of measure (average)

Hello

 

I have a table like the one I'm pasting below

 

ooctaviano_0-1624932392351.png

I have to main columns I'm using qty (vtas pza) and cost

The issue i'm having is this

I created the following measures

1PROMVENTAS = AVERAGE(VENTAS[Vta Pzas])  - this is the average of units sold 
2COSTOTOTAL = AVERAGE(VENTAS[COSTOPROM]) - this is the price
VTACTOTOTAL = AVERAGEX(VENTAS, VENTAS[COSTOPROM]*[1PROMVENTAS])
ooctaviano_1-1624932603591.png it want it to sum 304.37 from the 5th column,
 
For some reason it does not adds the results of the ids in the table if I do this for the sums instead of average it works, what am I doing wrong.  The following is the case that  works but I need averages of units and costs and then sum of totals.
 
VTACTOTOTAL = AVERAGEX(VENTAS, VENTAS[COSTOPROM]*[1PROMVENTAS])
VTACTOTOTAL = sumX(VENTAS, VENTAS[COSTOPROM]*[1PROMVENTAS])
 
ooctaviano_2-1624932782905.png

 

 
Please advise
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@ooctaviano , if there are more than one rows for ID, this is what you can use

VTACTOTOTAL = AVERAGEX(VENTAS, VENTAS[COSTOPROM]*[1PROMVENTAS])

 

VTACTOTOTAL new = sumX(values(VENTAS[ID]),[VTACTOTOTAL])

 

or

Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@ooctaviano , if there are more than one rows for ID, this is what you can use

VTACTOTOTAL = AVERAGEX(VENTAS, VENTAS[COSTOPROM]*[1PROMVENTAS])

 

VTACTOTOTAL new = sumX(values(VENTAS[ID]),[VTACTOTOTAL])

 

or

Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

It worked great

Thanks a lot

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors