Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

multiply parameter value with a column

I want to multiply a parameter value with a column in my table and display the multiplied value in another column (matrix visualization).   I have created a what-if parameter as I want the input to...
  • camargos88's avatar
    5 years ago

    Anonymous ,

     

    You just need to create a measure to multiply the value and the parameter value, like:

    _NewValue = SUM('Table'[Balance]) * Parameter[Parameter Value]

     

    Check the attached file.