Forum Discussion
New Date Column For Today
Hi Dbuck44 ,
You can use the Month function to accomplish this:
Something like below- edit to fit your table and column names.
ColumnName= MONTH(Table[Datefield])
Here is some additional information
https://learn.microsoft.com/en-us/dax/month-function-dax
You can also create a measure to get the month of today's date like so:
Please consider accepting as solution if this has answered the question.
- Dbuck443 years agoFrequent Visitor
I,m using the "Transform Data" in Power Query editor. Selecting "Add Custom Column". It's not accepting this new measure. Is this a syntax issue?
- Anonymous3 years agoNot applicable
Hi Dbuck44 ,
I helped you move your post to the Power Query forum.
And you can add the custom column as follows. It will return the Month number.
= Date.Month([Date])And the following will return the month name.
= Date.MonthName([Date])And if you also want to return the month number of totay, chech this.
= Date.Month(DateTime.Date(DateTime.LocalNow()))Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.