Forum Discussion

adriankelly's avatar
adriankelly
Frequent Visitor
6 years ago

Column Calculated using Slider Input

Hi,

 

I am a new user of Power BI and am having an issue getting a visual to work.

The table below has fixed values for X and Y is calculated using the formula shown. 

 

The Parameter[Value] is varied by a slider, shown below.

But changing the slider value does not change the table values. 

Is there a way to do this?

 

6 Replies

  • v-lili6-msft's avatar
    v-lili6-msft
    Community Support

    hi adriankelly 

    First, you should know that:

    1. Calculation column/table not support dynamic changed based on filter or slicer.
    2. Measure can be affected by filter/slicer, so you can use it to get dynamic summary result in a visual.

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

     

    Second, for your case, you just could just create a simple measure as below:

    Y = SUM('Table'[X]) - 'Parameter'[Value]

     

    And then drag this measure into visual.

    and here is sample pbix file, please try it.

     

    Regards,

    Lin

    • adriankelly's avatar
      adriankelly
      Frequent Visitor

      Hi v-lili6-msft,

       

      Thanks for your response. 

      The sample file contained what I was looking for. 

      Coming from an excel background the DAX language and operation is a bit confusing .

      Is the Y measure below storing the results in an array? 

       

       

      • v-lili6-msft's avatar
        v-lili6-msft
        Community Support

        hi  adriankelly 

        No, measure will calculate by it row context in a visual. It likes you define a function, then call it by row text in a visual.

         

        Regards,

        Lin

  • adriankelly seems like [Value] is a measure, you should be adding [Y] as a mesure. What actually you are trying to achieve? 

    Read this for calculate column and measures.

     

     

    I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos whoever helped to solve your problem. It is a token of appreciation!

    Visit us at https://perytus.com, your one-stop shop for Power BI related projects/training/consultancy.

     

  • edhans's avatar
    edhans
    Community Champion

    Calculated columns are calculated at load and not affected by slicers and report interactions. You need a measure.

     

    Y = 
    VAR CurrentXValue = MAX('Table'[X])
    VAR Result = CurrentXValue - [Selected Value]
    RETURN
        Result

     

     

    You can see my PBIX file here

    Calculated columns appear to be very Excel-like, but they are anything but, and should generally be avoided. There are times to use them, but it is rare. Getting data out of the source system, creating columns in Power Query, or DAX Measures are usually preferred to calculated columns. See these references:
    Calculated Columns vs Measures in DAX
    Calculated Columns and Measures in DAX
    Storage differences between calculated columns and calculated tables
    Creating a Dynamic Date Table in Power Query