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
Hi all,
Anyone can help me with changing the Month into short form. For example, January to Jan.
I've beening reading quite a few answers which suggested using add column = Format([Month],”MMM”)
But all I got is the error message saying :
"Expression.Error: The name 'format' wasn't recognized. Make sure it's spelled correctly."
Can anyone help me with that?
Thanks!
Julia
If month contains month name like January , February etc. Then you can use by creating new column
Short Month = LEFT (Table[Month],3)
Proud to be a Super User!
Hi Julia,
If you're getting that error message, you must be creating the column in Power Query, which would be my preferred place to add columns where possible 🙂
Assuming that [Month] is of type date, you can add such a column using the expression:
=Date.ToText([Month], "MMM")
FORMAT is a DAX function, so you can only use it to create a calculated column after loading the data to the model and clicking "New column" on the ribbon or in the context-menu of a table in the Fields list.
Regards
Owen
Ok, maybe too early for the success. Is that true if I add column in the field, it's not making any real change in the query? Because I need this column for adding another column.
If data is consistent in that column, it will not affect your current query
Proud to be a Super User!
is that true we cant see it in the power query. In the end I'm able to add another column in the field but not the query.
Thank you Owen! Yes, you are right! Because I'm in that power query! I got out of that editor and tried in the field, the format is working! However, I think the format only works when it's date format, right? Mine is text.
@JUJU_628 , you need to give Date, seem like you are giving a text
Format([Date],”MMM”)
Thank you! Yes, I realised the it's the text not the date.
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 |
---|---|
93 | |
85 | |
83 | |
75 | |
49 |
User | Count |
---|---|
142 | |
141 | |
110 | |
69 | |
55 |