Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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
Solved! Go to Solution.
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.
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.
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!
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
@Ben81 , Example
calculate( SUM(Sales[Sales Amount]),USERELATIONSHIP ('Table'2[CreateDate], 'Date'[Date])
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.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
20 | |
18 | |
17 | |
16 |
User | Count |
---|---|
34 | |
22 | |
19 | |
18 | |
11 |