Forum Discussion
Convert default AND to OR using Custom Visuals
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