Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I would like to create custom visuals to convert default AND to OR logical operator.
I am able to do this using DAX query. https://www.sqlbi.com/articles/using-or-conditions-between-slicers-in-dax/
Do you know how I can achieve this by cresting custom visuals. Is there any existing slicer which will do for me ?
Is there any way in powerbi I can execute query by passing parameters through custom visuals ?
Like Entity Framework Or Ado.Net ?
Hi @pbiembeded,
I'm not aware of an existing slicer for this.
You also can't supply custom queries via custom visuals - it's the combination of data roles, data view mapping (from capabilities) and any filters that you apply in the visual that get passed to Power BI for delegation. Power BI will determine what DAX to run.
The filtering APIs have the same functionality as the filter pane in the UI, so if you can generate the desired result in a visual manually using an advanced filter then you can use the Advanced Filtering API to generate an IAdvancedFilterCondition for each column and specify whether they should be an AND or an OR operation in the AdvancedFilterLogicalOperators property. This behaviour could then be wired up in a custom visual based on selections of displayed data values, to form a slicer, if you want this on the canvas rather then using the filter pane.
Good luck!
Daniel
Proud to be a Super User!
On how to ask a technical question, if you really want an answer (courtesy of SQLBI)
Don't have an answer but I am curious to learn about the use case. To me this feels like a solution in search of a problem, and something that can potentially confuse the report users (as they may have different expectations).
Sure Thanks for response. Here is requirement.
Let's say we have 2 entity:
1. Profession
o Manager
o Lead
o Product Owner
o Business Analyst
o Developer
o Tester
2. Clients
o Walmart
o Costco
o BJ’s
o Target
o Best Buy
o Acme
Just sample data.
Profession = 'Developer' AND Client = 'Walamart'
Profession = 'Developer' OR Client = 'Walamart'
Year Efforts(AND) Efforts(OR)
2007 104 1040
2008 120 860
2009 56 440
Using OR Query, I get efforts put by developer for all clients in Same report. But because of Power BI default behavior of AND I am not able to get the exact records.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.