Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
abukapsoun
Post Patron
Post Patron

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 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,

 

1 ACCEPTED SOLUTION
Eric_Zhang
Microsoft Employee
Microsoft Employee


@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 ()
)

whatif.gif

 

View solution in original post

3 REPLIES 3
Eric_Zhang
Microsoft Employee
Microsoft Employee


@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 ()
)

whatif.gif

 

WolfBiber
Microsoft Employee
Microsoft Employee

Hey,

I think you can't reach this goal with onboard visual.

But try i.e. "Text Filter" in Custom VisualsUnbenannt.png

Greetings,

Wolf

Over 4 years after the fact this was posted, it has saved me some headaches.  Thank you for this.

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.