The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Example:
hour column in hh:mm:ss format
calculated column should show
01:00 whatever is in the field time between 00:00:00 and 00:59:59
calculated column should show 02:00 whatever is in the time field between 01:00:00 and 01:59:59
Does anyone know how to write this measurement?
Solved! Go to Solution.
Here's one possibility:
CalCol = TIME ( ROUNDUP ( Table1[Time] * 24, 0 ), 0, 0 )
Here's one possibility:
CalCol = TIME ( ROUNDUP ( Table1[Time] * 24, 0 ), 0, 0 )
Thank you