Forum Discussion

abukapsoun's avatar
abukapsoun
Post Patron
8 years ago
Solved

Measure not interacting

Hi,   I have the following case   Column 1     Column 2   Column 3 P1                  X                     name1 P2                  Y                     name2 P3                   X       ...
  • TomMartens's avatar
    8 years ago

    Hey,

     

    this sounds that the interactions are disabled. I creates a little table with you sample data, and if select "P3" from the column chart the table visual interacts as expected.

     

    Here is the code for my measure that counts the X in column2

    count X = 
    CALCULATE(
    	COUNTROWS('SimpleTable')
    	,'SimpleTable'[Column2] = "X"
    ) 

     

    Can you check the interaction settings:

    • mark your column chart
    • switch to the format menu and toggle the interaction mode

    I would expect that the filter symbol is shown above your table visual as shown in the screenshot

     

     

    Hope this helps

     

    Regards

    Tom