Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
HI
i have data with time column. i want to have new column which will divide calendar with 24 hour intervals starting at 09:00 of each day. like this:
01/01/2018 09:00
01/02/2018 09:00
01/03/2018 09:00
01/04/2018 09:00
.........
and in a pivot i will be able to stor data within thoes 24H intervals.
Solved! Go to Solution.
Hi @giorgilomidze,
You can add a calculated column like this.
Column = [Date] + time(9,0,0)
Best Regards
Dale
Hi @giorgilomidze,
You can add a calculated column like this.
Column = [Date] + time(9,0,0)
Best Regards
Dale