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

Be 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

Reply
Victor1986
Helper I
Helper I

Como calcular o valor total de prioridades (1;2;3;4) divido pelo total

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:

Victor1986_2-1659550530751.png

 

Victor1986_1-1659550476960.png

 

1 ACCEPTED SOLUTION
daXtreme
Solution Sage
Solution Sage

// 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

View solution in original post

1 REPLY 1
daXtreme
Solution Sage
Solution Sage

// 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

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.