could you pleas help me with the following problem. I tried everything but can't get the desired values out of my cube. Basically i've got the following Facts/dimensions:
dimEmpolyeeGroup - employees grouped together by the HR department (M:N to department)
dimEmployee - the employee itself
dimDepartment - department structure (M:N to EmployeeGroup)
factAttendanceTime - time the staff was present and got payed for
factTimeTicket - time that was booked on a specific department
dimEmployeeGroup -> factAttendanceTime <- dimEmployee -> factTimeTicket <-dimDepartment
My Problem is to bring together those 2 factTables. How can I do this? I tried different combinations of many-to-many relationships between EmployeeGroup and Department but nothing worked for me. I either don't see values from factTimeTicket, factAttendanceTime or i get an cartesian product of Departments and EmployeeGroups.
The objective is to combine those 2 fact Tables. A user should be able (Excel Pivot) to filter by a EmployeeGroup to get the Attendance and TimeTicket-time for those Group (or the other way round, or filter by both,...)
What do i do wrong? Why isn't it automatically linked by dimEmployee?