Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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.
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.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.