Forum Discussion
Ben81
4 years agoHelper I
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...
- 4 years ago
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.
amitchandak
4 years agoSuper User
Ben81 , Example
calculate( SUM(Sales[Sales Amount]),USERELATIONSHIP ('Table'2[CreateDate], 'Date'[Date])
- Ben814 years agoHelper 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.