Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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.
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.
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.
@veronica_zappp - '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.
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.