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

The FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now

Reply
EGobi
Advocate I
Advocate I

Capitalize only the first letter of each word based on a culture

Hello,

 

I have a table in which all columns are in capital letters. For data presentation purposes, I want one of them to have only the first letter of each word capitalized. I could use the built-in function in PowerQuery Editor, which would produce the following step:

 

 

Table.TransformColumns(A, {{"B", Text.Proper, type text}})

 

Where A is the table and B is the column name.

 

The problem is that I need the capitalization to follow the settings of my culture (pt-BR), so some words should not be capitalized. Text.Proper has a "culture" argument that works for me, but Table.TransformColumns only accepts a "transformOperations" list of functions, which doesn't seem to support function arguments.

 

So how can I use the Text.Proper "culture" argument inside Table.TransformColumns?

 

Thanks in advance

1 ACCEPTED SOLUTION
BA_Pete
Super User
Super User

Hi @EGobi ,

 

Instead of using Table.TransformColumns, you could use a modified Table.ReplaceValue, something like this:

 

Table.ReplaceValue(
    A,
    each [B],
    each Text.Proper(_, "pt-BR"),
    Replacer.ReplaceValue,  // or Replacer.ReplaceText if this doesn't work
    {"B"}
)

 

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




View solution in original post

2 REPLIES 2
BA_Pete
Super User
Super User

Hi @EGobi ,

 

Instead of using Table.TransformColumns, you could use a modified Table.ReplaceValue, something like this:

 

Table.ReplaceValue(
    A,
    each [B],
    each Text.Proper(_, "pt-BR"),
    Replacer.ReplaceValue,  // or Replacer.ReplaceText if this doesn't work
    {"B"}
)

 

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Neat, it worked! Thanks!

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.

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.

March Power BI Update Carousel

Power BI Community Update - March 2026

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