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
Boa tarde!
Como faço para calcular a porcentagem entre o valor total de cada prioridade (1;2;3;4) dividido pelo total de cada periodo (jun/21...julh/21...Ago/21...etc???
Tabela:
Solved! Go to Solution.
// Let's say your base measure is [M],
// and the table is T.
[M Percentage of Period] =
var TotalAcrossAllVisiblePeriods =
CALCULATE(
[M],
ALLSELECTED( T[Period] )
)
var Result =
DIVIDE(
[M],
TotalAcrossAllVisiblePeriods
)
return
Result
// Let's say your base measure is [M],
// and the table is T.
[M Percentage of Period] =
var TotalAcrossAllVisiblePeriods =
CALCULATE(
[M],
ALLSELECTED( T[Period] )
)
var Result =
DIVIDE(
[M],
TotalAcrossAllVisiblePeriods
)
return
Result
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
22 | |
19 | |
17 | |
9 | |
5 |
User | Count |
---|---|
37 | |
29 | |
16 | |
14 | |
12 |