Forum Discussion

Ben81's avatar
Ben81
Helper I
4 years ago
Solved

Matrix table filter by inactive relationship

Hi, Hoping for some help on this issue...

I have a matrix table with a date field in the rows and then a text description and account number in the value sections and these fields are from my main data table.

I then have a slicer with week commencing from my date dimension table and I want to be able to select a week and filter the matrix table to show me all records within that selected week. 

 

The issue I have is that the date used in the matrix table is not the active relationship so when I select the week it won't filter correctly. I guess I have to create a measure and use the function USERRELATIONSHIP but not sure how to write the DAX because it's not really a calculation in the table but rather just values that I want to filter down based on the date. 

 

Any ideas how I solve this?

 

Thanks

Ben

  • Hi Ben81 ,

     

    You can create a measure like so:

    Measure = IF ( MAX('FactTable'[Date]) IN VALUES('DateDim'[Date]),1)

     

    And then, you can use it as the "Filters on this visual" and set it as "is 1".

     

    If this not work, you can put the measure into your Matrix visual and then turn off word wrap in the matrix setting and drag the field of the measure to hide it.

     

     

    Best Regards,

    Icey

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

5 Replies

    • Ben81's avatar
      Ben81
      Helper I

      Hi,

      Not sure how this helps me? It's not a calculation I'm trying to perform. I just have a table with a list of dates and text values that I want to filter based on a inactive relationship. 

  • Hi:

    You can just make another copy of your date table and connect to the inactive date in your fact table. If your Date Table is names "Dates" then

    New Table 

    Dates II = Dates
    You can have plenty of date tables to play role dimensions.
  • Icey's avatar
    Icey
    Community Support

    Hi Ben81 ,

     

    You can create a measure like so:

    Measure = IF ( MAX('FactTable'[Date]) IN VALUES('DateDim'[Date]),1)

     

    And then, you can use it as the "Filters on this visual" and set it as "is 1".

     

    If this not work, you can put the measure into your Matrix visual and then turn off word wrap in the matrix setting and drag the field of the measure to hide it.

     

     

    Best Regards,

    Icey

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

    • Juliet1's avatar
      Juliet1
      Frequent Visitor

      Hello Icey

      I tried your solution for a similar issue I am currently facing, but unfortunately, it doesn't disable the active relationship. As a result, it seems like two filters are being applied simultaneously. Do you have any ideas on how I can resolve this?

       

      Thanks!