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
Hello, I searched and read the 2 posts about julian dating but I can't get a solution to work.
I can either convert the julian date column on my inventory table YYDDD into a calendar date or add a column in my date table which would convert the date to the julian date.
In the below example I need 17103 to be April 13 2017 or 4/13/17
Solved! Go to Solution.
Sorry, my mistake.
Please use this instead
Column = VAR myYear = 2000 + INT(DIVIDE([Julian Manufacture Date],1000)) VAR myDayOfYear = MOD([Julian Manufacture Date],1000) -1 RETURN DATE( myYear,1,1) + myDayOfYear
I'm converting Julian dates in JD Edwards (Oracle DB), and I had to add "1900" to the year portion of the formula. So this is the working Power Query (M) formula I wound up with:
Date.AddDays( #date(Number.RoundDown([Julian Date]/1000)+1900, 1,1), Number.Mod([Julian Date], 1000)-1))
Hi @jpt1228
THis might be close as a new calculated column
Column = VAR myYear = INT(DIVIDE([Julian Manufacture Date],1000)) VAR myDayOfYear = MOD([Julian Manufacture Date],1000) -1 RETURN DATE(Year(myYear),1,1) + myDayOfYear
@Phil_Seamark Yes, that was it - Works for the Month/Day but the year is showing 1900 not 2017
What is the raw format in Julian for the 1st of Jan, 1900 ?
I see where the confusion came from
00001 would be the date code for Jan 1 and could be for both 1900 and 2000 years.
The first 2 numbers are the year - 11 could be 1911, 2011, 2111
The next 3 are the day of the year - 001 would always be Jan 1. - 002 would be Jan 2 etc.
17001 would intend to be Jan 1, 2017, but could also be Jan 1, 1917.
Since this is inventory I have to measure from the date of manufacture to today to calculate how old the inventory is. I was going to convert the
Sorry, my mistake.
Please use this instead
Column = VAR myYear = 2000 + INT(DIVIDE([Julian Manufacture Date],1000)) VAR myDayOfYear = MOD([Julian Manufacture Date],1000) -1 RETURN DATE( myYear,1,1) + myDayOfYear
HI, when I try this formula, I am getting a Token Eof expected error
Hi @pludlow. Looks like a formatting error on your date see https://community.powerbi.com/t5/Desktop/Token-eof-expected/td-p/27929
Hi @jpt1228, still confused. I am pulling data straight of JDE and coming out in this format. I have tried several formulas and
none seem to work. Below is the best one so far
I was able to solve my issue using the formula I used above but reformatting the date
I guess you need to add table name next to "Julian Manufacture Date"
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
well easier to add julian date in calendar table and set relationship on julian date between date and inventory table.
It can be handly to have in date table , in case you hve another table with julian dte, you don't need to convert it to date rather use julian date.
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
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 |
---|---|
134 | |
90 | |
90 | |
66 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
70 | |
68 |