Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
I have a very curious case that thankfully does not have much of a practical effect, as PBI does not care about column order, but it does bother me on a visual level.
I have a calculated table with a distinct(union(values(... structure pulling info from some other tables that are imported from a data source.
But for some reason, that main column has suddenly moved from its default left-most positon - where it should be - to a position four columns to the right, so in the middle of the data that is pulled from the referenced other tables.
I tried to find out how to move columns in a table, but all I found refers to modifying the order through "transform data" - and that is not applicable to calculated tables.
I was even trying to find out where the table structure gets saved inside the pbix file itself, but I couldn't find the file where the order is saved either.
Any ideas?
@amitchandakI did add some columns later on as I updated the structure, but why would BI move the DAX column from its default position on the very left?
Please vote for this.https://ideas.powerbi.com/ideas/idea/?ideaid=a272113a-0f44-41ac-a402-bf1066984cda
DAX columns do not support fixing to a special position until you use DAX to create a new table.
NewTable =
SELECTCOLUMNS (
OldTable,
"Column1", OldTable[Column1],
"Column2", OldTable[Column2],
"Column3", OldTable[Column3]
)
I find it ridiculous that something so simple is still not implemented. Currently the base column for my table sits right in the middle of the data it pulls from other tables, it's stupid.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.