Forum Discussion

abukapsoun's avatar
abukapsoun
Post Patron
8 years ago
Solved

User Input for filtering

Hi,   I believe it is not possible but I am just trying my luck. I have a visual that is displaying results based on the visual level filters. Displaying values that are less than "5"   Is there ...
  • Eric_Zhang's avatar
    8 years ago

    abukapsoun wrote:

    Hi,

     

    I believe it is not possible but I am just trying my luck. I have a visual that is displaying results based on the visual level filters. Displaying values that are less than "5"

     

    Is there a way, where I can create a visual where I can input the value I want to use in the filter instead of doing it on the visualization tab?

     

    In other words, I want to give the option for users who are seeing the report to be able to filter based on custom value instead of a pre-defined one. 

     

    thanks,

     


    abukapsoun

    Instead of applying visual level filter, you can create a what if parameter and control the data presentence with a tricky measure like

    isShown =
    IF (
        SUM ( Table1[Column2] ) <= Parameter[Parameter Value]
            || ISBLANK ( Parameter[Parameter Value] ),
        SUM ( Table1[Column2] ),
        BLANK ()
    )