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 moreShape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.
Hi,
My data has no date column and has a month column(Jan, Feb, Mar...Dec) and a year column respectively, can I transform it with DAX?
For example
Month Year
| Jan | 2022| --> 1/1/2022
Thanks
Ryan
Solved! Go to Solution.
Hi, @RyanLau
You can try the following methods.
Date = DATEVALUE('Table'[Year]&"/"&'Table'[Month]&"/"&"1")
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @RyanLau
You can try the following methods.
Date = DATEVALUE('Table'[Year]&"/"&'Table'[Month]&"/"&"1")
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Charlotte,
It really works, many thanks!
Regards
Ryan
combine date and year column then change the data type to Date
Did I answer your question? If so, please mark my post as a solution!
Proud to be a Super User!
User | Count |
---|---|
90 | |
88 | |
88 | |
79 | |
49 |
User | Count |
---|---|
153 | |
145 | |
106 | |
74 | |
55 |