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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
tecumseh
Resolver III
Resolver III

DateToText Swaps Month and Day Python Microsoft.OleDb.Date

Hi all,

Using PBID April 2025.
I'm using a Python Script to export a dataframe to csv file
All of the date columns are returning Microsoft.OleDb.Date
So I need to convert all date columns to text before I export to csv

I tried DateToText. but it is swapping the the month to the day position
How do I retain the original date as a text string?

Thanks,

w

date_text_error.png

1 ACCEPTED SOLUTION
tecumseh
Resolver III
Resolver III

Guess I need to specify the format string

Date.ToText([CAMPAIGN_START_DATE], [Format="MM/dd/yyyy"])

A little odd that Month must be uppercase MM then day and year are lowercase.

View solution in original post

3 REPLIES 3
v-hashadapu
Community Support
Community Support

Hi @tecumseh , Thank you for reaching out to the Microsoft Community Forum.

 

Try using Power Query’s Date.ToText() function with both a specified format string and culture setting. This avoids the issue where dates appear to swap month and day, due to locale-based formatting. For example, for a column like CAMPAIGN_START_DATE:

 

Date.ToText([CAMPAIGN_START_DATE], [Format="MM/dd/yyyy", Culture="en-US"])

Avoid using Text.From() in this scenario. While it does convert a date to text, it does not allow you to specify a custom format and instead uses the system’s locale settings. This means the month/day order could vary across environments, which is exactly the issue you're experiencing.

Please refer below documentation:

Date.ToText
Text.From

 

If this helped solve the issue, please consider marking it 'Accept as Solution' so others with similar queries may find it more easily. If not, please share the details, always happy to help.
Thank you.

tecumseh
Resolver III
Resolver III

Guess I need to specify the format string

Date.ToText([CAMPAIGN_START_DATE], [Format="MM/dd/yyyy"])

A little odd that Month must be uppercase MM then day and year are lowercase.

Hi @tecumseh ,

Alternatively try using Text.From()

Did I answer your question? Mark my post as a solution, this will help others!
If my response(s) assisted you in any way, don't forget to drop me a Kudos 🙂
Kind Regards,
Avinash

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

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

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.

Top Solution Authors