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
Leski
Frequent Visitor

Import from CSV Decimal separator - changes to date

Hello

I have a problem with import from CSV. The decimal separator is a dot, but the import PQ will change some values to date. For exaple 11.44 is paź.44 (short month name and short year).

I know the problem is in polish regional setting but I coudent find right settings.

Can you help me please?

1 ACCEPTED SOLUTION
Leski
Frequent Visitor

I found an error in the csv file. All you had to do was open csv in excel and save, then csv converted some numbers into text "paź.44". Unfortunately . It is not conected with Power BI and regional setings. 

Thank you all for your advice and help, it will help in the future. 

View solution in original post

3 REPLIES 3
Leski
Frequent Visitor

I found an error in the csv file. All you had to do was open csv in excel and save, then csv converted some numbers into text "paź.44". Unfortunately . It is not conected with Power BI and regional setings. 

Thank you all for your advice and help, it will help in the future. 

v-alq-msft
Community Support
Community Support

Hi, @Leski 

 

I'd like to suggest you specify the culture for Table.TransformColumnTypes  function.

Table.TransformColumnTypes(table as table, typeTransformations as list, optional culture as nullable text) as table

 

You may try to add 'en-US' for the third parameter of the function as below.

= Table.TransformColumnTypes(Source,{{"Test", type number}},"en-US")

 

About the culture for each region, you may refer to the link .

 

Best Regards

Allan

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

camargos88
Community Champion
Community Champion

Hi @Leski ,

 

Have you tried to remove the change type step and convert the column using locale ?

 

https://blog.crossjoin.co.uk/2015/05/25/working-with-international-date-and-number-formats-in-power-...



Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



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