Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
AleFVG
Helper I
Helper I

Transform date field

in the excel file that I import into power bi there is a date field in the month-year format

example
12019 (january 2019)
122019 (December 2019)
42020 (April 2020)

I have to transform this field into this format: day / month / year

Now I proceed like this

I take the last 4 digits and transform them into the year column
the other two digits proceed like this
if it is equal to 1, then it becomes 1/1 / and I add the year
if it equals 2, then it becomes 1/2 / + year
and so on.

Is there a faster and more effective way?

thank you.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@AleFVG , You can create a date like this

 

date = date(right([col],4) , left([col], len([col])-4),1)

 

now you can convert to format from Column tools or format commnad

 

Text date = format([date], "DD/MM/YYYY")

 

Please provide your feedback comments and advice for new videos
Tutorial Series Dax Vs SQL Direct Query PBI Tips
Appreciate your Kudos.

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@AleFVG , You can create a date like this

 

date = date(right([col],4) , left([col], len([col])-4),1)

 

now you can convert to format from Column tools or format commnad

 

Text date = format([date], "DD/MM/YYYY")

 

Please provide your feedback comments and advice for new videos
Tutorial Series Dax Vs SQL Direct Query PBI Tips
Appreciate your Kudos.

thanks for the support @amitchandak !

I created a new column, and entered the formula you suggested.

Error displayed below:

Expression.Error: The name "date" was not recognized, please check orthography.

 

When I enter the formula, it confirms that there are no syntax errors.

Sorry @amitchandak !

Your solution works!
I was trying to insert the formula into the data model, and it doesn't work!
I tried to insert it in the table and it works!

 

many thanks.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.