Forum Discussion
Anonymous
4 years agoNot applicable
Create Date column from Year and Month columns
I have a table with a column of Month NUmber and a column for Year. I want to make a date column for the 1st of the month. The new column I want to be formatted [Month Number]/1/[Year] Example: the...
- 4 years ago
Anonymous this was to be done in PQ.
For DAX use this
Column = DATE('Table'[Year],'Table'[Month Number],1)