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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register 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
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.