Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
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.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 9 | |
| 6 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 21 | |
| 14 | |
| 9 | |
| 5 | |
| 5 |