Forum Discussion
Do I really need Multiple linked Calendars?
I have an employee table with E#, hired Date, and term date.
I would like to build a visual of hires and terms each month.
I think I need to make 3 calendar tables to do this. 1 to link the start date to, 1 to link the term date and 1 more to link the 2.
This seems wasteful, and that there must be an easier way.
Help please.
E# hired date termed date
123 1/1/2018 11/15/2018
234 2/15/2018 8/20/2018
...
Month Jan Feb Mar ... Aug Sep Oct Nov Dec
Hire 1 1 0 ... 0 0 0 0 0
Terms 0 0 0 ... 1 0 0 1 0
Hey,
I'm not sure if you're familiar with the concept of "role-playing" dimensions and how this concept can be modeled in SSAS Tabular or Power BI. This concept contradicts with the use of the DAX functions USERELATIONSHIP / TREATAS.
But this article provides a good start:
Regards,
Tom
2 Replies
- TomMartens
Super User
Hey,
I'm not sure if you're familiar with the concept of "role-playing" dimensions and how this concept can be modeled in SSAS Tabular or Power BI. This concept contradicts with the use of the DAX functions USERELATIONSHIP / TREATAS.
But this article provides a good start:
Regards,
Tom
- I_Like_Pi
Resolver II
USERELATIONSHIP solved my multicalendar issues, thanks Tom!!