Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
User | Count |
---|---|
70 | |
70 | |
34 | |
23 | |
22 |
User | Count |
---|---|
96 | |
94 | |
50 | |
42 | |
40 |