Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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.
Solved! Go to 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])
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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])
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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])
Best Regards,
Amy
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 50 | |
| 43 |