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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Gjakovasc
New Member

Issue with Type Conversion and CSV?

I've got some trouble with type conversion. CSV flat contains column named rocket cost and it is written in format 50.0 or 75.0 or 1,130.0 etc. So it is clearly english format, where , is thousand sepeartor and . is decimal separator. When I try to load it into Power BI I get text file (beacuse I'm working on polish local settings where there is no . in numbers). So I want change regional settings for this column as USA. But unfortunatly I get strange thing, acutally I see numbers but from 50.0 it changes to 50,0. That's ridiciolous and not understandable for me. Can any1 help? Maybe if I stream my screen for you, you will see what's going on more clearly. I need perhaps 3 minutes of your time so if any1 can help I would be very very thankful

1 ACCEPTED SOLUTION
RayWu
Memorable Member
Memorable Member

@Gjakovasc 
There's culture applied
1. on import, in power query. If not specified it defaults to the current system
2. after importing the value there's a display culture that doesn't have to mutate the underlying data type. Like date-times are integers/floats under the hood, but you can set them to display in any text format.


You can use the optional culture parameter set to en-US Which tells it use that locale/culture's rules for converting text to numbers.

 

   #"Numbers from en-US" = Table.TransformColumns(
        Source,
        {
            {"Number", each Number.FromText(_, "en-US"), type number}
        }
    ),

 

 

hopefully this solve the problem.



View solution in original post

1 REPLY 1
RayWu
Memorable Member
Memorable Member

@Gjakovasc 
There's culture applied
1. on import, in power query. If not specified it defaults to the current system
2. after importing the value there's a display culture that doesn't have to mutate the underlying data type. Like date-times are integers/floats under the hood, but you can set them to display in any text format.


You can use the optional culture parameter set to en-US Which tells it use that locale/culture's rules for converting text to numbers.

 

   #"Numbers from en-US" = Table.TransformColumns(
        Source,
        {
            {"Number", each Number.FromText(_, "en-US"), type number}
        }
    ),

 

 

hopefully this solve the problem.



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.