Forum Discussion

AlexDECG's avatar
AlexDECG
Regular Visitor
7 years ago
Solved

Compile table from multiple tables in DAX

Hello everyone,   I am fairly new to Power BI and DAX and I have been trying to find a way to create a summary table from more tables in DAX with no success :smileysad:   We want to be able to be...
  • Ashish_Mathur's avatar
    7 years ago

    Hi,

    Try these steps:

    1. Append data from all 3 Tables to create 1 large range
    2. Remove 3 columns - Number of staff, Number of Machines and Premises Size
    3. Select the first two columns and select Unpivot other columns
    4. Click on Close and Apply in the Query Editor
    5. Build a Matrix visual and drag File Date, Customer ID to the row labels.  Drag Attribute column to the column labels
    6. Write this measure: Scores = SUM(Data[Value])

    Hope this helps.