Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
maqsud
Helper III
Helper III

Unpivot without using Power Query

I have the below table created using the DAX formula and want to unpivot column without using Power Query.

 

Table name: Demo

Access code (Unique Column)Column A Column A
10.870.74
20.870.74
30.870.74
40.870.74

 

 

Required Table: Result

Access code (Not unique in this table)NameValue
1Column A0.87
1Column B0.74
2Column A0.87
2Column B0.74
1 ACCEPTED SOLUTION
mahoneypat
Microsoft Employee
Microsoft Employee

This is something that definitely should be done in the query editor, if possible.  Why do you need it in DAX?

 

In any case, here is a DAX expression that will generate your Calculated Table

 

Union Table =
VAR TableA =
    SELECTCOLUMNS (
        'Union',
        "Access Code", 'Union'[Access Code],
        "Value", 'Union'[Column A],
        "Column", "Column A"
    )
VAR TableB =
    SELECTCOLUMNS (
        'Union',
        "Access Code", 'Union'[Access Code],
        "Value", 'Union'[Column B],
        "Column", "Column B"
    )
RETURN
    UNION ( TableA, TableB )

 

If this works for you, please mark it as the solution.  Kudos are appreciated too.  Please let me know if not.

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@maqsud , refer

https://radacad.com/pivot-and-unpivot-with-power-bi
Transpose : https://yodalearning.com/tutorials/power-query-helps-transposing-data/

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
mahoneypat
Microsoft Employee
Microsoft Employee

This is something that definitely should be done in the query editor, if possible.  Why do you need it in DAX?

 

In any case, here is a DAX expression that will generate your Calculated Table

 

Union Table =
VAR TableA =
    SELECTCOLUMNS (
        'Union',
        "Access Code", 'Union'[Access Code],
        "Value", 'Union'[Column A],
        "Column", "Column A"
    )
VAR TableB =
    SELECTCOLUMNS (
        'Union',
        "Access Code", 'Union'[Access Code],
        "Value", 'Union'[Column B],
        "Column", "Column B"
    )
RETURN
    UNION ( TableA, TableB )

 

If this works for you, please mark it as the solution.  Kudos are appreciated too.  Please let me know if not.

Regards,

Pat





Did I answer your question? Mark my post as a solution! Kudos are also appreciated!

To learn more about Power BI, follow me on Twitter or subscribe on YouTube.


@mahoneypa HoosierBI on YouTube


Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors