Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hello to all,
I am asking for your help regarding a calculated column. I would like to be able to cut each date in 10min time slot.
Example for the 30/03/2021:
30/03/2021 00:10:00
30/03/2021 00:20:00
30/03/2021 00:30:00
30/03/2021 00:40:00
30/03/2021 00:50:00
30/03/2021 01:00:00
30/03/2021 01:10:00
30/03/2021 01:20:00
Is it possible without using Power Query ?
Thanks in advance,
Joël
Solved! Go to Solution.
@Anonymous , You have crossjoin you calendar with generateseries of 10 Min
a new table like
Addcolumns(Crossjoin(Calendar, Addcolumns(generateseries(0,(24*60*60),10), "Min", time(0,[value],0))), "Datetime", [Date] +[Min])
Also check if time table can help
https://kohera.be/blog/power-bi/how-to-create-a-time-table-in-power-bi-in-a-few-simple-steps/
@Anonymous , You have crossjoin you calendar with generateseries of 10 Min
a new table like
Addcolumns(Crossjoin(Calendar, Addcolumns(generateseries(0,(24*60*60),10), "Min", time(0,[value],0))), "Datetime", [Date] +[Min])
Also check if time table can help
https://kohera.be/blog/power-bi/how-to-create-a-time-table-in-power-bi-in-a-few-simple-steps/