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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Jewb16
New Member

Switch returns wrong totals despite SUMX

Hi Community, 

 

I am new to Power BI. I am trying to build a Balance Sheet from an financial statement which has a few line items recalculated.

I want the code to sum up the Balance sheet using for the positions that are recalculated the corresponding values and for the others the values that were input for the model. 

 

I researched already here and thought, that SUMX would to the job. However, I can't get the totals work correctly. 

 

My Measure is the following (Where [Total Amount] is the input numbers and DIM_Structure[Account] is the line item structure of the Balance Sheet: 

 

Development_Ergebnisübertrag =

var selectedlevel = SELECTEDVALUE(DIM_Structure[Account])
var PnL =
    CALCULATE (
                TOTALYTD([TotalAmount],DIM_Date[FullDateAlternateKey]),
                ALL ( 'DIM_Structure' ),
                'DIM_Structure'[Statement] = "GuV"
    )
 
return
SUMX(VALUES ('DIM_Structure'[Account]),
switch(
        TRUE(),
        selectedlevel = "Ergebnis der Periode", PnL,
        and (selectedlevel = "Gewinnrücklage", MAX(DIM_Date[Monatsname]) = "Dezember"), 10,
        [TotalAmount]
)
)


The result is brings back wrong totals:
 
Jewb16_0-1678952808046.png

 


I thankful for eyery tip how to solve this. 

Best regards
1 REPLY 1
amitchandak
Super User
Super User

@Jewb16 , Try like , assumed you fact name is fact

 

SUMX(summarize(Fact, 'DIM_Structure'[Account],DIM_Date[Monatsname])),
switch(
TRUE(),
selectedlevel = "Ergebnis der Periode", PnL,
and (selectedlevel = "Gewinnrücklage", MAX(DIM_Date[Monatsname]) = "Dezember"), 10,
[TotalAmount]
)
)

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.