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

Getting different result in measure and column

Hi,

 

  I am trying to use column instead of measure based on a value in swith/if statement but seems like Column value doesn't change.

  

  e.g.

   

   Measure 1 = SWITCH([Measure],"Hey",1,"Hello",2)  --Output is 1 when [Measure] = "Hey" and 2 when [Measure] = "Hello"
  
   Same thing in Column
  
  Column = SWITCH([Measure],"Hey",1,"Hello",2)  --Output is 1 when [Measure] = "Hey" and 1 when [Measure] = "Hello"

  What is the difference between them? Any help to know would be highly appriciated.
 
Thanks,
Sud
1 ACCEPTED SOLUTION
v-danhe-msft
Employee
Employee

Hi @Anonymous,

There is some difference between the calculated column and measure, the value of a calculated column is computed during data refresh and uses the current row as a context; it does not depend on user interaction in the report. A measure operates on aggregations of data defined by the current context, which depends on the filter applied in the report – such as slicer, rows, and columns selection in a pivot table, or axes and filters applied to a chart.

You could refer to below link:

https://www.sqlbi.com/articles/calculated-columns-and-measures-in-dax/

 

Regards,

Daniel He

Community Support Team _ Daniel He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-danhe-msft
Employee
Employee

Hi @Anonymous,

There is some difference between the calculated column and measure, the value of a calculated column is computed during data refresh and uses the current row as a context; it does not depend on user interaction in the report. A measure operates on aggregations of data defined by the current context, which depends on the filter applied in the report – such as slicer, rows, and columns selection in a pivot table, or axes and filters applied to a chart.

You could refer to below link:

https://www.sqlbi.com/articles/calculated-columns-and-measures-in-dax/

 

Regards,

Daniel He

Community Support Team _ Daniel He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Hi Sud,
Calculated columns are under a row context and the measures are in a filter context.

 

Try using the CALCULATE function to change the context of the measure (Context Transition):

 

Column = CALCULATE (SWITCH ([Measure], "Hey", 1, "Hello", 2))

 

 

Tell us if it works for you.

 

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.