Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Dear colleagues,
As you would see in the screenshot below, from table_1 il would like to create Unpivot DAX table without using Power Query.
Please could you support to resolve this issues.
Thank you.
Fd.
Solved! Go to Solution.
@dofrancis3 , Try using SELECT COLUMNS and UNION
dax
Table_2 =
UNION(
SELECTCOLUMNS(
Table_1,
"Country", Table_1[Country],
"Year", Table_1[Year],
"Quarter", Table_1[Quarter],
"Output", "An approved activity",
"Indicators", Table_1[An approved activity],
"Value", BLANK()
),
SELECTCOLUMNS(
Table_1,
"Country", Table_1[Country],
"Year", Table_1[Year],
"Quarter", Table_1[Quarter],
"Output", "What is the intended use of these tools",
"Indicators", Table_1[What is the intended use of these tools],
"Value", BLANK()
),
SELECTCOLUMNS(
Table_1,
"Country", Table_1[Country],
"Year", Table_1[Year],
"Quarter", Table_1[Quarter],
"Output", "Capacity building",
"Indicators", Table_1[Capacity building],
"Value", BLANK()
),
SELECTCOLUMNS(
Table_1,
"Country", Table_1[Country],
"Year", Table_1[Year],
"Quarter", Table_1[Quarter],
"Output", "Verry good",
"Indicators", Table_1[Verry good],
"Value", BLANK()
),
SELECTCOLUMNS(
Table_1,
"Country", Table_1[Country],
"Year", Table_1[Year],
"Quarter", Table_1[Quarter],
"Output", "Have any surveys",
"Indicators", Table_1[Have any surveys],
"Value", BLANK()
)
)
Proud to be a Super User! |
|
@dofrancis3 , Try using SELECT COLUMNS and UNION
dax
Table_2 =
UNION(
SELECTCOLUMNS(
Table_1,
"Country", Table_1[Country],
"Year", Table_1[Year],
"Quarter", Table_1[Quarter],
"Output", "An approved activity",
"Indicators", Table_1[An approved activity],
"Value", BLANK()
),
SELECTCOLUMNS(
Table_1,
"Country", Table_1[Country],
"Year", Table_1[Year],
"Quarter", Table_1[Quarter],
"Output", "What is the intended use of these tools",
"Indicators", Table_1[What is the intended use of these tools],
"Value", BLANK()
),
SELECTCOLUMNS(
Table_1,
"Country", Table_1[Country],
"Year", Table_1[Year],
"Quarter", Table_1[Quarter],
"Output", "Capacity building",
"Indicators", Table_1[Capacity building],
"Value", BLANK()
),
SELECTCOLUMNS(
Table_1,
"Country", Table_1[Country],
"Year", Table_1[Year],
"Quarter", Table_1[Quarter],
"Output", "Verry good",
"Indicators", Table_1[Verry good],
"Value", BLANK()
),
SELECTCOLUMNS(
Table_1,
"Country", Table_1[Country],
"Year", Table_1[Year],
"Quarter", Table_1[Quarter],
"Output", "Have any surveys",
"Indicators", Table_1[Have any surveys],
"Value", BLANK()
)
)
Proud to be a Super User! |
|
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 3 |