March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello and thanks in advance for helping me.
I have a table, and in my table I have a field for Average Salary, but I need the Average Salary to sum in the total. Any suggestions on how to sum correctly? Highlighted # below should be $210,000, not $105,425.
Thank you 🙂
I'm basically using a Provider Name and Provider Salary. Here is the formula for Provider Salary aka Salary Numeric 6.7.23.
I needed a sample of your data. But see if it helps
Salary Numeric 6.7.23 =
SUMX (
VALUES ( Dataset[Provider Name] ),
CALCULATE ( AVERAGE ( Dataset[Salary_Numeric] ) )
)
Thank you for the reply. The previously formula was not 100% accurate, although, I feel like you are on the right path. The "Salaray Numeric 6.7.23" makes rthe row total correct, however, the Grand total is way off. The newest formula you sent me also sums the row total correctly, and the Grand Total is only about half off the correct amount (When all Providers are selected). Here is the last foirmula you sent me, which I feel is close: Salary Numeric 6.7.23 = SUMX ( VALUES ( Dataset[Provider Name] ), CALCULATE ( AVERAGE ( Dataset[Salary_Numeric] ) ) ). Is it possible to create a formual that substitutes "Salary Numeric" with "Salary Numeric 6.7.23"? It wont let substitute in the last formula you sent. I'm assuming because it is a calculated measure, i dont know? Thank you in advance!
Seria bom que enviasse uma amostra dos seus dados. Pode ser fictícios.
@VilmarSch That worked for the row totals using this formula ↓
Soma da Média =
VAR TabelaResumida =
SUMMARIZECOLUMNS ( dCalendar[Ano], dCalendar[MesId] )
VAR MediasMensais =
SUMX ( TabelaResumida, CALCULATE ( AVERAGE ( fVendas[Qtd] ) ) )
RETURN
MediasMensais
@VilmarSch using the "Salary Numeric 6.7.23" formual I commented earlier. Can you help me plug in the fields and caluclations that you referred to me on your last comment?
Send your pbix please. It can be with dummy data
Use medidas
Exemplo:
Soma da Média =
SUMX ( VALUES ( dProduto[Categoria] ), CALCULATE ( AVERAGE ( fVendas[Qtd] ) ) )
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
89 | |
84 | |
70 | |
51 |
User | Count |
---|---|
206 | |
143 | |
97 | |
79 | |
68 |