TotalDays / Temporal Layer

Convert duration values to total number of days, similar to timedelta.total_days() or DATEDIFF(). Returns integer count of complete days.

Duration conversion examples:

DurationTotal DaysNote
48:00:002Exactly 2 days
25:00:0011 day + 1 hour
72:30:0033 days + 30 minutes

Common applications:

  • Service duration calculation
  • Billing periods
  • Project timeframes
  • SLA monitoring Note: Partial days are truncated, not rounded.
Table
0
0
Table

Transforms

[, ...]

Select

column

Duration column to convert to days. Input must be a duration type. Converts all time units to complete days, discarding any remainder.

Name for the new column. If not provided, the system generates a unique name. If AsColumn matches an existing column, the existing column is replaced. The name should follow valid column naming conventions.