Forum Discussion

aaron797's avatar
aaron797
Icon for Advocate I rankAdvocate I
6 years ago
Solved

Two active joins? Need data modelling advice

I have built a dashboard to display survey results, however now i am trying to integrate a filter to swap between different Surveys dates (Categorical value, not an actual date). The tricky part is that I have a results table, with the field [Survey], however i also need counts of [Department] from both tables, with the ability to slice to different Surveys. 

 

SurveyResults

UserIDQuestionAnswerDepartmentSurvey
114CSMar-19
122CSMar-19
213SMMar-19
224SMMar-19
312CSSep-19
325CSSep-19
413SMSep-19
424SMSep-19
515SMSep-19
522SMSep-19

 

Participation

DepartmentTotalSurvey
CS2Mar-19
SM3Mar-19
CS2Sep-19
SM4Sep-19

 

They are joined with Many to Many, participation filters SurveyResults (active) on [Department].

 

However as the relationship is not joined on [Survey], i must use two slicers [Survey] from both tables to get the correct records filtered out, i.e Both slicers = "Sep 2019". I feel this would not be an issue if i could join on both [department] & [Survey].

 

What would be a better approach? Having to set both slicers to the correct survey isn't great.. I am quite inexperienced at data modelling so any help would be greatly appreciated.

 

One of my visuals in a table

[Department] 

[Number Completed] - Count Distinct([UserID])

[Total Employees] - Sum([Total]) 

  • Anonymous's avatar
    Anonymous
    6 years ago
    Just see the patric video(custom keys) just now he launched on guy in cube you tube channel.

    So first go to second table which is partition table and click on add column and then click on index column.

    So you will have one index which can be used as custom key. Then click on merge queries.
    When you merge the queries it will show you table at the end of column list from there click arrow icon and just select index column.

    Now you have key to join both table in many to one direction.


    Another workaround for this is you need to write dax and need to merge both tables into single table and move total column to first table.


    Thanks
    Pravin

    If it resolves your problem mark it as a solution and give Kudos.

2 Replies

  • Anonymous's avatar
    Anonymous
    Not applicable
    Just see the patric video(custom keys) just now he launched on guy in cube you tube channel.

    So first go to second table which is partition table and click on add column and then click on index column.

    So you will have one index which can be used as custom key. Then click on merge queries.
    When you merge the queries it will show you table at the end of column list from there click arrow icon and just select index column.

    Now you have key to join both table in many to one direction.


    Another workaround for this is you need to write dax and need to merge both tables into single table and move total column to first table.


    Thanks
    Pravin

    If it resolves your problem mark it as a solution and give Kudos.