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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
smpa01
Super User
Super User

Bulk Renaming column in PQ with a pattern

@AlexisOlson  @ImkeF 

whenever I pull data from SSAS tables, they come as like this. 

smpa01_0-1642548290362.png

I want to bulk rename the colNames in a way that returns the value inside parenthesis

My end goal is this

smpa01_1-1642548365060.png

I tried this. Is it the best-optimized way to do this, I want the best optimization possible for a large tbl.

 

CT = Table.TransformColumnTypes(
    src,
    {{"db[colA]", Int64.Type}, {"db[colB]", Int64.Type}, {"db[colC]", Int64.Type}}
  ),
  Change = Table.TransformColumnNames(CT, each Text.Replace(Text.Split(_, "["){1}, "]", ""))

 

 

let
  src=Table.FromRows(
    Json.Document(
      Binary.Decompress(
        Binary.FromText("i45WMlTSUTICYmOlWJ1oJRMgyxSIzZRiYwE=", BinaryEncoding.Base64),
        Compression.Deflate
      )
    ),
    let
      _t = ((type nullable text) meta [Serialized.Text = true])
    in
      type table [#"db[colA]" = _t, #"db[colB]" = _t, #"db[colC]" = _t]
  ),
  CT = Table.TransformColumnTypes(
    src,
    {{"db[colA]", Int64.Type}, {"db[colB]", Int64.Type}, {"db[colC]", Int64.Type}}
  ),
  Change = Table.TransformColumnNames(CT, each Text.Replace(Text.Split(_, "["){1}, "]", ""))
in
  Change

 

Thank you in advance.

 

 

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs
2 ACCEPTED SOLUTIONS
mahoneypat
Employee
Employee

I would try this way first, in a single rename columns step using List.Zip and List.Transform.

 

let
  src=Table.FromRows(
    Json.Document(
      Binary.Decompress(
        Binary.FromText("i45WMlTSUTICYmOlWJ1oJRMgyxSIzZRiYwE=", BinaryEncoding.Base64),
        Compression.Deflate
      )
    ),
    let
      _t = ((type nullable text) meta [Serialized.Text = true])
    in
      type table [#"db[colA]" = _t, #"db[colB]" = _t, #"db[colC]" = _t]
  ),
    #"Renamed Columns" = Table.RenameColumns(src,List.Zip({Table.ColumnNames(src), List.Transform(Table.ColumnNames(src), each Text.BetweenDelimiters(_, "[", "]"))}))
in
    #"Renamed Columns"

 

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

AlexisOlson
Super User
Super User

I have a custom function ShortenColumnNames that I run on all of these:

(Source as table) as table =>
let
    ColNamesList = Table.ColumnNames(Source),
    Transform = Table.RenameColumns(Source,
        List.Transform(ColNamesList, each {_, Text.BetweenDelimiters(_, "[", "]")}))
in
    Transform

 So each of my SSAS queries starts like this (I keep the DAX queries separately):

let
    Source = AnalysisServices.Database(Workspace, Dataset, [Query=DAXQuery, Implementation="2.0"]),
    RenameCols = ShortenColumnNames(Source),
    [...etc...]

 

View solution in original post

4 REPLIES 4
smpa01
Super User
Super User

Thanks @mahoneypat  @AlexisOlson  

 

I tested out each of our Query plan

 

Me, @AlexisOlson and @mahoneypat  has exactly the same Query Plan as the following despite using different techniques. I don't know how?

smpa01_0-1642562810591.png

 

I will use this

Table.TransformColumnNames(src, each Text.BetweenDelimiters(_, "[", "]"))

 

Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

They actually generate the same list of lists, but I would go with the one from @AlexisOlson too. That approach is more elegant.

 

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


AlexisOlson
Super User
Super User

I have a custom function ShortenColumnNames that I run on all of these:

(Source as table) as table =>
let
    ColNamesList = Table.ColumnNames(Source),
    Transform = Table.RenameColumns(Source,
        List.Transform(ColNamesList, each {_, Text.BetweenDelimiters(_, "[", "]")}))
in
    Transform

 So each of my SSAS queries starts like this (I keep the DAX queries separately):

let
    Source = AnalysisServices.Database(Workspace, Dataset, [Query=DAXQuery, Implementation="2.0"]),
    RenameCols = ShortenColumnNames(Source),
    [...etc...]

 

mahoneypat
Employee
Employee

I would try this way first, in a single rename columns step using List.Zip and List.Transform.

 

let
  src=Table.FromRows(
    Json.Document(
      Binary.Decompress(
        Binary.FromText("i45WMlTSUTICYmOlWJ1oJRMgyxSIzZRiYwE=", BinaryEncoding.Base64),
        Compression.Deflate
      )
    ),
    let
      _t = ((type nullable text) meta [Serialized.Text = true])
    in
      type table [#"db[colA]" = _t, #"db[colB]" = _t, #"db[colC]" = _t]
  ),
    #"Renamed Columns" = Table.RenameColumns(src,List.Zip({Table.ColumnNames(src), List.Transform(Table.ColumnNames(src), each Text.BetweenDelimiters(_, "[", "]"))}))
in
    #"Renamed Columns"

 

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors