Forum Discussion

pbiembeded's avatar
pbiembeded
Regular Visitor
5 years ago

Convert default AND to OR using Custom Visuals

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 ?

3 Replies

  • 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).

    • pbiembeded's avatar
      pbiembeded
      Regular Visitor

      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.

  • dm-p's avatar
    dm-p
    Super User

    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