Forum Discussion

Jairacha's avatar
Jairacha
Frequent Visitor
3 years ago
Solved

How to map two data sets in a data model

Hi All!    I am trying to create a skills dashboard to map out differnet skills of employees within my department. I currently have two tables, Table1 is the results from the Msft Forms survery tha...
  • jdbuchanan71's avatar
    3 years ago

    Jairacha 

    Take a look at this article from DAX Patterns on survey data.  https://www.daxpatterns.com/survey/

    You have a good start with your second table, I think you just need to organize your responses table vertically.

    Basically, the pattern is, each question / answer pair is assigned an unique answer key.

     

    Finance Organizational Evaluation / N/A is 1
    Finance Organizational Evaluation / Beginner is 2
    Cost Take Out / Beginner is 22
    Cost Take Out / Experienced is 23
    Cost Take Out / Advanced is 24
    etc.

     

    Then you map the answer keys to the employee based on thier responses.

    It's all covered in that article.