Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
I have a perplexing issue.
My data is being imported from an Excel sheet. Power Query automatically changes this to text or a whole number (picture below is of text)
However, if I manually change the data type to Date, it is also incorrect:
I would really just like this to be a Year, formatted as a date. I could even handle 2005-06-15 (middle of the year). I should add that I cannot replace all the years as they are many... so would prefer not to. But right now this is not working for some of the visualizations I'm working with.
Any advice?
Solved! Go to Solution.
Hi @Anonymous
You can open Power Query Editor and add a custom column with below code to get a date column with [Year]. This uses Power Query M function #date. You can change the month and day numbers per your need.
#date(Number.From([Year]), 6, 15)
Then change this new column to Date type.
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi @Anonymous
You can open Power Query Editor and add a custom column with below code to get a date column with [Year]. This uses Power Query M function #date. You can change the month and day numbers per your need.
#date(Number.From([Year]), 6, 15)
Then change this new column to Date type.
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Thank you!!! This worked for me 🙂 . I've been learning DAX but haven't crossed into the M frontier yet... many thanks again.
@Anonymous - 'Year' by itself is not a date though. It is a whole number. Possibly you need to remove summarization 'sum' from the column in 'Column Tools > Properties' ribbon when you have the field selected?
Proud to be a Super User!
Thanks, Chris. I had tried this earlier (I should have written that in my initial post) but it did not resolve the issue for me.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
86 | |
76 | |
74 | |
56 | |
45 |
User | Count |
---|---|
117 | |
105 | |
77 | |
66 | |
64 |