Forum Discussion
Slicing through inactive relationship
- 7 years ago
How about you create a second calendar table, copy of the one you have,
Calendar2 = Calendar
and create an active relationship between Calendar2[Date] and Payments[Incident date]? Then you work with that Calendar2 in this particular dashboard. Make sure there are no filters on the original 'Calendar' on that dashboard.
Otherwise you'll have to create specific measures including USERELATIONSHIP( ) for all cases.
How about you create a second calendar table, copy of the one you have,
Calendar2 = Calendar
and create an active relationship between Calendar2[Date] and Payments[Incident date]? Then you work with that Calendar2 in this particular dashboard. Make sure there are no filters on the original 'Calendar' on that dashboard.
Otherwise you'll have to create specific measures including USERELATIONSHIP( ) for all cases.
I recommend:
Calendar2 = ALL(Calendar)
cheers!