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
Anonymous
Not applicable

How to create a TimeKey from a time column in hh:mm:ss format.

Hi team

 

How can i create a TimeKey column from a Time column in powerquery.

The timekey column will be in seconds from 1-86400. 
This is similar to creating a datakey eg: 2019-06-13 to 20190613. 

The idea behind creating a timekey is to join this fact table key to a timekey in a time dimension table in my dw which would allow for the data to be sliced by different time fields.

i would prefer to do this in Power Query.

 

timekey.jpg

1 ACCEPTED SOLUTION

Hi,

 

Enter the Query Editor, click on your query, go to tab "Add Column" -> "Custom Column", enter column name and formula like code below, adjust the code by adding ",Int64.Type". Don't forget to click the "Close & Apply" button.

 

Time.Hour([Time])*60*60+Time.Minute([Time])*60+Time.Second([Time])

time to second.png

 

 

 

Best Regards,

Amy

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-xicai
Community Support
Community Support

Hi @Anonymous ,

 

Enter the Query Editor, click on your query, go to tab "Add Column" -> "Custom Column", enter column name and formula like code below, adjust the code by adding ", type time". Don't forget to click the "Close & Apply" button.

 

=#time(0,0,0) + #duration(0,0,0,[TimeKey])

 

Adding a custom column in the Query Editor(1).png

Best Regards,

Amy

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Hi @v-xicai , Unfortuantely thats not what i am after as i already have a time column! 

I am trying to convert time from hh:mm:ss to seconds (wholenumber). This would then form a key to be joined to a time dimension table.

Hi,

 

Enter the Query Editor, click on your query, go to tab "Add Column" -> "Custom Column", enter column name and formula like code below, adjust the code by adding ",Int64.Type". Don't forget to click the "Close & Apply" button.

 

Time.Hour([Time])*60*60+Time.Minute([Time])*60+Time.Second([Time])

time to second.png

 

 

 

Best Regards,

Amy

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.