Forum Discussion
andmo
2 years agoFrequent Visitor
Custom Parameter Changer from User
Hello Together, is it possible to create a text input box that actively changes a parameter? For understanding: I have a table with values and this should be able to be changed actively by the ...
- 2 years ago
Hi, andmo ,
all right then, your Discount should be calculated as Measure.
Like this:
Discount = [Total Sum] * DIVIDE(SELECTEDVALUE(Parameter[Parameter]), 100)Please note that the selectedvalue except a column from your parameter table and it can have different name.
andmo
2 years agoFrequent Visitor
I will try to describe it better.
So i have a Table with Customer, Type, Total Preis and a Paramter Discount. When the user changes the parameter, the values in the table should also change.
The Discount column is calculated by Total*Paramter/100
vojtechsima
2 years agoSuper User
Hi, andmo ,
all right then, your Discount should be calculated as Measure.
Like this:
Discount = [Total Sum] * DIVIDE(SELECTEDVALUE(Parameter[Parameter]), 100)Please note that the selectedvalue except a column from your parameter table and it can have different name.