Forum Discussion
tracytran91
5 years agoHelper III
Filter unsual value with parameter slicer
Hi friends, I would like to filter values ( created by a measure ) by using a "What-if" parameter. Could you please help me to create a measure to filter values which is greater than the input v...
- Anonymous5 years ago
Hi tracytran91 ,
Could you tell me if your problem has been solved? If it is, kindly Accept it as the solution. More people will benefit from it.😀
Best Regards,
Eyelyn Qin
amitchandak
5 years agoSuper User
tracytran91 , Try a measure like
measure =
var _sel = selectedValue(whatif[whatif])
return
avergageX(filter(Values(Table[customer]),[%discount vs Gross Sale]>_sel),[%discount vs Gross Sale])