Forum Discussion

Taurus's avatar
Taurus
Frequent Visitor
3 years ago
Solved

Filter a table visual by date slicer using another relationship

Hi everyone.

 

I have a simple table:

 

 

and this relationship graph:

 

 

The "Dates" table is made using DAX CALENDAR

 

I put a date slicer and two table visuals on a page:

 

 

Both of the table visuals are filtered by slicer on RegistrationDate. I want the rigth table to be filtered by SaleDate. How to "tell" this right table to use inactive relationship Dates[Date] -> Table[SaleDate] ?

 

 

  • Anonymous's avatar
    Anonymous
    3 years ago

    Hi Taurus ,

     

    According to your description, here are my steps you can follow as a solution.

    (1) My test data is the same as yours.

    (2) We can create a measure. 

    _SaleDate = CALCULATE(MAX('Table'[SaleDate]),USERELATIONSHIP('Table'[SaleDate],'Date'[Date]))

    (3) Then the result is as follows.

    Please refer to the following documents for more information.

    USERELATIONSHIP function (DAX) - DAX | Microsoft Learn

    Using USERELATIONSHIP in DAX - SQLBI

     

    If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.

     

    Best Regards,

    Neeko Tang

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

1 Reply

  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi Taurus ,

     

    According to your description, here are my steps you can follow as a solution.

    (1) My test data is the same as yours.

    (2) We can create a measure. 

    _SaleDate = CALCULATE(MAX('Table'[SaleDate]),USERELATIONSHIP('Table'[SaleDate],'Date'[Date]))

    (3) Then the result is as follows.

    Please refer to the following documents for more information.

    USERELATIONSHIP function (DAX) - DAX | Microsoft Learn

    Using USERELATIONSHIP in DAX - SQLBI

     

    If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. Thank you.

     

    Best Regards,

    Neeko Tang

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