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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
ovetteabejuela
Impactful Individual
Impactful Individual

Exporting | Date(Text Format) reverts to Date(Date Format)

Hi Community,

 

I have this calculated column:

 

               WeekEnding = FORMAT(DimCalendar[Date] - MOD(DimCalendar[Date]-1,7) + 6,"YYYY-MM-DD")

 

So my intention is really to have a date in text format. I've even set Data Type and Format to Text.

 

My challenge though is when I export the table ( . . . > Export Data) and now I guess this is more of an Excel question rather than PowerBI or maybe there's a way around PowerBI to overcome this.

 

1. When I opened the exported data (csv) in notepad, the date(string) is in its "YYYY-MM-DD".

2. BUT if I use excel to open the CSV file it turns it into m/d/yyyy.

 

Anyway and again maybe this is really more of an Excel inquiry and I'm reposting this in an Excel forum just thought maybe I can find an answer here.

 

Thank you.

3 REPLIES 3
Anonymous
Not applicable

Try adding an apostrophe infront of the data.

 

EDIT: apostrophe is '

Yes, I know what you mean by this but this won't work because you'll not lose the apostrophe.

 

Example:

 

WeekEnding = CONCATENATE("'",FORMAT(DimCalendar[Date] - MOD(DimCalendar[Date]-1,7) + 6,"YYYY-MM-DD"))

 

Expected output(when CSV file is opened in Excel):

         YYYY-MM-DD where aposthrope should have forced the date to a text type

 

But what you'll see is:

         'YYYY-MM-DD, aposthrope is retained. It will only disappear if you select the cell, hit F2 and press enter key.

Did you every get a solution to this, I have the same problem.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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