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
kylebi1
Frequent Visitor

Round Down to Nearest 30 Minute Interval (Query Editor)

Is there a way to add a custom column at the query level for rounding down to nearest 30 minute interval?

 

This is my current custom column outside of the query:

 

Interval = TIME(HOUR(v_nm_cic_eAgentActivityLog[event_time]), ROUNDDOWN((MINUTE(v_nm_cic_eAgentActivityLog[event_time])/60)*2, 0) * 30, 0)

 

I can't get this to be added at the query level, however. I need this to perform an inner merge on another table.

1 ACCEPTED SOLUTION
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @kylebi1,

 

It seems that your formula is written using the Dax function.

 

In Query Editor, you could create a custom column with the formula below which logic should be more easier.

 

Nearest 30 Minute Interval= Table.AddColumn(#"Changed Type", "Custom", each Time.From(Text.From(Time.Hour(Time.From([Time])))&":"&(if Time.Minute(Time.From([Time]))>= 30 then "30" else "0")&":00"))

Here is the output.

 

query editor.PNG

 

In addition, you also could have a reference of this video about Round time to nearest x min with Power Query.

 

Best Regards,

Cherry

Community Support Team _ Cherry Gao
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

2 REPLIES 2
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @kylebi1,

 

It seems that your formula is written using the Dax function.

 

In Query Editor, you could create a custom column with the formula below which logic should be more easier.

 

Nearest 30 Minute Interval= Table.AddColumn(#"Changed Type", "Custom", each Time.From(Text.From(Time.Hour(Time.From([Time])))&":"&(if Time.Minute(Time.From([Time]))>= 30 then "30" else "0")&":00"))

Here is the output.

 

query editor.PNG

 

In addition, you also could have a reference of this video about Round time to nearest x min with Power Query.

 

Best Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you!!!!

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.