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)
smpa01
4 years agoCommunity Champion
Anonymous this was to be done in PQ.
For DAX use this
Column = DATE('Table'[Year],'Table'[Month Number],1)- Maitreya102 years agoFrequent Visitor
Here for the last date or maximum date, I want the last day of month instead of first day, eg if my data lies between Jan 2023 to Jan 2024, I want all records between Jan 2023 to Dec 2023 to show date for first day of month(MMM/01/YYYY) except the records having date in Jan 2024 which I want to show as last day of month(01/31/2024).
- dufoq32 years agoCommunity Champion
Hi, last day of month you can achieve this way:
Date.EndOfMonth(#date([Year],[Month Number],1))- Maitreya102 years agoFrequent Visitor
I don't want the enddate for all the records, only for the records having last(latest) month and year.