Forum Discussion
louisquinet
Helper II
2 years agoChange range Y-axis
Hello In my scatter chart the highest value is not very visible. It is always at the maximum and because of that you can only see half a circle or even a quarter of a circle. I would like to change ...
Idrissshatila
Super User
2 years ago
try this
Measure =
SWITCH(
TRUE(),
SELECTEDVALUE('X axis'[Parameter]) = "Net Unit Price", 1.05 * SELECTEDVALUE('Pricing_Benchmark'[Net Unit Price]]),
SELECTEDVALUE('X axis'[Parameter]) = = "Maintenance Cost", 2 * SELECTEDVALUE('Pricing_Benchmark'[Maintenance Cost]),
// Add more conditions as needed
BLANK() // Default value if no conditions are met
)louisquinet
Helper II
2 years agoThank you for your fast answer. When I try your code I receive the following error: