Forum Discussion

jnjAnil's avatar
jnjAnil
New Member
11 months ago
Solved

create two slicers based on the same column

How can I create two slicers based on the same column in Power BI, and ensure that the data filtered by both slicers is reflected in the table visual? I’m trying to build a report where I use two ...
  • anilgavhane's avatar
    11 months ago

    To achieve this, you’ll need to create a duplicate column or a disconnected table that mimics the original column. Here's how:

    Option 1: Duplicate the Column in the Data Model

     

    • In Power Query or DAX, create a new column that duplicates the original:

       

       

       

      Category_Copy = 'YourTable'[Category]

       

      1. Use one slicer for Category and another for Category_Copy.
      2. In your table visual, use logic (e.g., DAX measures or filters) to reflect both slicer selections.