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
caoellipsis
New Member

Shaping Month/Day/Year Problem

Hi there,

This is my first post.  I can't figure out how to get the date right.  

This is data for price per barrel of oil by month and year.  

 

 

I want the month and year data to be shaped into month/day/year, so april 1986 would read as 04/01/86 Formatted as a date.

 

I can't change the months columns format to date without causing errors, either now or after i unpivot.  Any ideas?  

 

 Capture.JPG

 

 

 

 

1 ACCEPTED SOLUTION
Ashish_Mathur
Super User
Super User

Hi,

 

You first change the number format of the first column to Whole Number and then "Unpivot other columns".  Rename the attribute column as Months.  Click on Close and Load.  Then write this calculated column formula

 

=1*("1/"&[Month]&"/"&[Year])

 

Format this calculated column as Date.

 

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

4 REPLIES 4
caoellipsis
New Member

Thanks guys!... both solutions worked.  

I was tinkering with the switch function, but ultimately the date = months expression was easier to implement. 

But both answers will help in my PowerBI quest.

Cheers,

Chris

You are welcome.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
Ashish_Mathur
Super User
Super User

Hi,

 

You first change the number format of the first column to Whole Number and then "Unpivot other columns".  Rename the attribute column as Months.  Click on Close and Load.  Then write this calculated column formula

 

=1*("1/"&[Month]&"/"&[Year])

 

Format this calculated column as Date.

 

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
ChrisMendoza
Resident Rockstar
Resident Rockstar

@caoellipsis,

 

Is this what you're going for?:

 

1.PNG

 

Unpivot the columns [Jan], [Feb], [Mar], etc. I used the built-in UI for this.

 

2.PNG

 

Use the following article - https://www.powerquery.training/portfolio/replicate-power-pivots-switch-function/

I modified to the following:

 

(input) =>
let
values = {
    {"Jan", 1},
    {"Feb", 2},
    {"Mar", 3},
    {input, "Undefined"}

},
Result = List.First(List.Select(values, each _{0}=input)){1}
in
Result

After you have the custom function, you can use it as an Add Column:

 

fnSwitchMMM([Attribute])

Lastly, you can now use DateTime.From ( ) as an Add Column then change Data Type to Date:

DateTime.From(#date([Column1],[Custom],1))

*review the 3rd argument for #date 

 

 

 






Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

Proud to be a Super User!



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.