March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
I have a text field that contains year and month only (ex '201801'). How do i create a date field using this text field.
Thanks!
Sallee
Solved! Go to Solution.
Well, in DAX you could do this:
Column = DATE(INT(LEFT([Column1],4)),INT(RIGHT([Column1],2)),1)
Well, in DAX you could do this:
Column = DATE(INT(LEFT([Column1],4)),INT(RIGHT([Column1],2)),1)
Sallee,
create a new column in same table with following code where varible _Date can be equal to other column in a table with dates.
3rd argument of the DATE function defines a day. In my case the result will be 1/1/2018
= VAR _Date = "201801" RETURN DATE(left(_Date,4),MID(_Date,5,2),1)
Hi, I have this formula
Businessdate = DATE(LEFT([BUS_YEAR_MTH],4),MID([BUS_YEAR_MTH],5,2),1)
but it is giving me this error:
Expression.Error: The name 'DATE' wasn't recognized. Make sure it's spelled correctly.
Thanks for your help!
Sallee
Hi @Anonymous
Open Power BI Desktop,click on "New column" from the home menu, "DATE" function should be possible.
Reference:
Best Regards
Maggie
works fine for me. try to use this sample as per link below.
https://1drv.ms/x/s!AhUWZ84uo7UAgmM8kvkwm1THdmsj
Alternative solution, Greg offered, should also work fine, use either one.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
85 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |