The material provided is for informational purposes only, and should not be relied on in making any purchasing or investment decision. The information is not a commitment, promise or legal obligation to deliver any material, code, or functionality. The development, release, and timing of any features or functionality described for our products remains at our sole discretion. © 2026 Cloud Software Group, Inc. All rights reserved
Temp Solution:
Register A Expression Function that does the conversions, save it to the library. Users can then load in the function to any new analysis, or have a template analysis saved with the function.
Example:
Expression Name: DivideTimeSpan
Description: Convert timespan to hours and divide by integer
DivideTimeSpan <- function(TimeSpan,Divisor)
{
(Days(TimeSpan)*24 +Hours(TimeSpan)+ Minutes(TimeSpan) /60 + Seconds(TimeSpan)/3600)/Divisor
}