Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Data model Creation

Hi ALL I have two tables like below   Table 1   Table 2   By using these two tables How can I create a data model like below image? Final Data Model   Data:   Interview ...
  • v-jiascu-msft's avatar
    v-jiascu-msft
    7 years ago

    Hi Anonymous,

     

    I would suggest you create a new table in your scenario. The slicer Candidate will be from it.

    CandidateIDs =
    DISTINCT (
        UNION ( VALUES ( Table1[Candidate ID] ), VALUES ( Table2[Candidate ID] ) )
    )
    

    Data-model-Creation2

    Data-model-Creation3

     

     

    Best Regards,