The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
I need the parameter to manually enter values, then I need the table to display the values higher than what I entered in the parameter, but it is not working and not interacting with the visuals.
my actual purpose is to manually enter a value and if that value is higher than the average, then the symbols with a p/b ratio higher than the entered value should be displayed, I thought the parameter is the best way of action, but currently not working?
I would appreciate any advice!
Solved! Go to Solution.
Hi @emmasd ,
In fact, for your problem, you can directly use slicer for the data that needs to be filtered, and switching the slicer style can also realize it. Following the way you want, I made simple samples, you can check the result as below:
An attachment for your reference. Hope it helps!
Best regards,
Community Support Team_ Scott Chang
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hi @emmasd ,
In fact, for your problem, you can directly use slicer for the data that needs to be filtered, and switching the slicer style can also realize it. Following the way you want, I made simple samples, you can check the result as below:
An attachment for your reference. Hope it helps!
Best regards,
Community Support Team_ Scott Chang
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
@emmasd , if you have created this using Parameter (Numeric) or generateseries and noy joined with table, it will not filter
You need to have measure like below, with all groupby of visual
Sumx(Filter(Summarize(Table, Table[Column]) , [Your measure] <[Selected value of Param] ) , [Your Measure])