Forum Discussion
Anonymous
5 years agoNot applicable
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...
- 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.
camargos88
Community Champion
5 years agoAnonymous ,
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.