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
AlmarBiter
New Member

Power Query Table.UnpivotColumns Expression.Error

Hi Guys,

 

Need your help. I was encountering an error when using the Table.UnpivotColumns.

AlmarBiter_0-1745066818903.png

 

Advance Editor

AlmarBiter_1-1745067142189.png

 

I try to fix it until I came up to try simple code like this  and I encounter the same error.

let
    Source = #table({"Category", "Value1", "Value2"}, {{"A", 1, 2}, {"B", 3, 4}}),
    Unpivoted = Table.UnpivotColumns(Source, {"Value1", "Value2"}, "Attribute", "Value")
in
    Unpivoted

AlmarBiter_2-1745067573734.png


Appreciate your any feedback. Thank you

3 ACCEPTED SOLUTIONS
SundarRaj
Super User
Super User

Hi @AlmarBiter , The error says it is a formula error: Use Table.Unpivot() or Table.UnpivotOtherColumns() as per your need. Thanks!

Sundar Rajagopalan

View solution in original post

krishnakanth240
Power Participant
Power Participant

Hi @AlmarBiter ,

Okay, Can you replace with 'Table.UnpivotOtherColumns' instead of Table.UnpivotColumns. This function unpivots all columns except the ones specified, which might work for your case.

 

Could you please check and confirm? Thank you

View solution in original post

ronrsnfld
Super User
Super User

There is no function named Table.UnpivotColumns. Hence, your error.

View solution in original post

5 REPLIES 5
AlmarBiter
New Member

Thanks for your help. My earlier reference included the Table.UnpivotColumns function, but after reviewing the latest Power Query documentation, it appears this function is no longer available.

ronrsnfld
Super User
Super User

There is no function named Table.UnpivotColumns. Hence, your error.

krishnakanth240
Power Participant
Power Participant

Hi @AlmarBiter ,

Okay, Can you replace with 'Table.UnpivotOtherColumns' instead of Table.UnpivotColumns. This function unpivots all columns except the ones specified, which might work for your case.

 

Could you please check and confirm? Thank you

I'm now using the Table.UnpivotOtherColumns and it's working. Thanks for the help

SundarRaj
Super User
Super User

Hi @AlmarBiter , The error says it is a formula error: Use Table.Unpivot() or Table.UnpivotOtherColumns() as per your need. Thanks!

Sundar Rajagopalan

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.

Top Solution Authors