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
Anonymous
Not applicable

DAX: Sum of a Switch Statement

Hi, 

I am very new to Power BI and I am trying to add a new column that shows me the variation between two other columns, but I am having problems because my values are calculated based on a switch statement. 

 

I have a matrix where in the rows there is the description, in the values the switch statement, and in the column I have a "Scenario" that can have 2 values ("Real" and "Contractual"). 

 

The measure for the switch is named "Measure Year Appointment" 

 

And the look of my variation measure is this: 

Variation :=

VAR R = CALCULATE(SUM([Measure Year Appointment]),FILTER('Scenario','Scenario'[Scenario]="Real"))
VAR C = CALCULATE(SUM([Measure Year Appointment]),FILTER('Scenario','Scenario'[Scenario]="Contractual"))
return
DIVIDE(R - C, C)

 

And I am having this error message: "the sum function only accepts a column reference as the argument number 1"

 

Thanks in advance!

 

 

 

3 REPLIES 3
Mariusz
Community Champion
Community Champion

Hi @Anonymous

You can use SUMX() or just measure without the SUM() around if it does already contain SUM(), it's hard to tell if we can not see the

[Measure Year Appointment] syntax.
 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.


Anonymous
Not applicable

Hi, 

 

Sorry, my bad, here it is (it is a really big one so i will just put (...) because the process is smiliar to what is shown in the first 2 values: 

 

Measure Year Appointment = SWITCH(TRUE(),FIRSTNONBLANK('Measure Dashboard'[Appointment Description], 1) = "Total of Medical Appointments", [Total of Medical Appointments], FIRSTNONBLANK('Measure Dashboard'[Appointment Description],1) = "First Appointments", [First Appointments],(...),BLANK(),BLANK())

Hi @Anonymous 

 

You should be able to use SUMX() instead of SUM() in your CALCULATE 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

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.