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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

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
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.