Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hi,
I have a DateTable and InfoTable (example below) where the 2 have an active relationship on StartDate and an inactive relationshiop on EndDate.
ID | StartDate | EndDate | Type |
User1 | 2022-01-01 | 2022-01-01 | a |
User2 | 2022-01-01 | 2022-01-05 | b |
User3 | 2022-01-01 | 2022-01-05 | c |
User4 | 2022-01-05 | 2022-01-04 | a |
User5 | 2022-01-05 | 2022-01-07 | b |
I'd like to have a simple table visualization which interacts with a slicer. The slicer is coming from the Date table but using the inactive relationship of the DateTable.
I'm already using USERELATIONSHIP where possible, but I cannot get my head around in case of the ID column, where I'd like to return all the values with said criteria without any aggregation.
For example:
If I select 2022-01-05 on the slicer I'd like to see only User2 & User3 in my visual and not User4 or User5.
Is there a way to achieve this without duplicating the date table (which I would try to avoid) or making the active relationship inactive too (which I would also try to avoid) .
Thanks in advance!
Solved! Go to Solution.
@DPatkos , Create a measure,
Count of Id = Calculate(COUNT(Table[Id]), USERLATIONSHIP(Date[Date], Table[EndDate]))
Add this measure as a visual level filter in the table visual and Apply Count of Id >= 1.
Thanks @SivaMani ,
I've tried this previously and the issue is that it only returns one small part of the data and not all the rows. Any idea why?
thanks
If I select 2022-01-05 on the slicer I'd like to see only User2 & User3 in my visual and not User4 or User5.
The proposed approach will meet the above requirement. Verify the other filters and make sure no conflicts.
You are right, it had a conflict with another filter. Thanks agani!
@DPatkos , Create a measure,
Count of Id = Calculate(COUNT(Table[Id]), USERLATIONSHIP(Date[Date], Table[EndDate]))
Add this measure as a visual level filter in the table visual and Apply Count of Id >= 1.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
86 | |
85 | |
84 | |
67 | |
49 |
User | Count |
---|---|
131 | |
111 | |
97 | |
71 | |
67 |