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
tobkres
Helper II
Helper II

Calculate a percentage, based on separate rows

Hello community.

 

I need some help with creating a percentage based on buttom of a table and the top.

tobkres_0-1655794376568.png

I need it to take the 86.160,69 (Dækningsbidrag) and divide it by 95.038,00 (Omsætning) and shown as a percentage beside the number 86.160,69. 

 

Any help would be appreciated.

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @tobkres 
Please try this code. Please adjust the spilling of the words.

Bel∅b Measure =
VAR NormalValue =
    SUM ( TableName[Bel∅b] )
VAR OmstaetningValue =
    CALCULATE (
        SUM ( TableName[Bel∅b] ),
        TableName[N∅glital DKK] = "OmstaetningValue"
    )
RETURN
    IF (
        HASONEVALUE ( TableName[N∅glital DKK] ),
        NormalValue,
        NormalValue & " ("
            & FORMAT ( DIVIDE ( NormalValue, OmstaetningValue ), "Percent" ) & ")"
    )

View solution in original post

5 REPLIES 5
tobkres
Helper II
Helper II

Thank you for helping me out. I have tried, but i get the following error.

Column 'Inversbeloeb' in table 'MeasureTable' cannot be found or may not be used in this expression.

 

This is the code: 

DG percentage = 
VAR NormalValue =
    SUM ( MeasureTable[Inversbeloeb] )
VAR RevenueValue =
    CALCULATE(
        SUM ( MeasureTable[Inversbeloeb] ),
        Sortorder[KontoOverskrift] = "RevenueValue"
    )
RETURN
    IF (
        HASONEVALUE ( Sortorder[KontoOverskrift] ),
        NormalValue,
        NormalValue & " ("
            & FORMAT ( DIVIDE ( NormalValue, RevenueValue ), "Percent" ) & ")" 

 

These are the fields.

tobkres_0-1655800294179.png

 

Have i missed something?

@tobkres 
Please try

DG percentage =
VAR NormalValue = [Inversbeloeb]
VAR RevenueValue =
    CALCULATE ( [Inversbeloeb], Sortorder[KontoOverskrift] = "RevenueValue" )
RETURN
    IF (
        HASONEVALUE ( Sortorder[KontoOverskrift] ),
        NormalValue,
        NormalValue & " ("
            & FORMAT ( DIVIDE ( NormalValue, RevenueValue ), "Percent" ) & ")"
    )

Seems like it just returns the same numbers.

tobkres_1-1655804228635.png

 

 

 

@tobkres 
Please make sure you are using the correct spilling. Copy the name from inside the column. If you want we can connect via zoom. Will take only 10min to sort it out.

tamerj1
Super User
Super User

Hi @tobkres 
Please try this code. Please adjust the spilling of the words.

Bel∅b Measure =
VAR NormalValue =
    SUM ( TableName[Bel∅b] )
VAR OmstaetningValue =
    CALCULATE (
        SUM ( TableName[Bel∅b] ),
        TableName[N∅glital DKK] = "OmstaetningValue"
    )
RETURN
    IF (
        HASONEVALUE ( TableName[N∅glital DKK] ),
        NormalValue,
        NormalValue & " ("
            & FORMAT ( DIVIDE ( NormalValue, OmstaetningValue ), "Percent" ) & ")"
    )

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