Forum Discussion
AishwariyaV
Helper IV
6 years agoMultiple what if based on selection
Hey guys, I am currently working on a scenario in power bi. I have implemented what if analysis with a sample dataset. I am considering "Product Quantity" as a what if parameter, which answers th...
- 6 years ago
Some thing like this, or combine using the switch
measure = var _max = maxx(whatifcond,whatifcond[whatifcond]) return calculate(sum(table[revenue]), filter(table[category] ="Condiments"))*_max
AishwariyaV
Helper IV
6 years agoamitchandak
Super User
6 years agoSome thing like this, or combine using the switch
measure =
var _max = maxx(whatifcond,whatifcond[whatifcond])
return
calculate(sum(table[revenue]), filter(table[category] ="Condiments"))*_max