This document (including, without limitation, any product roadmap or statement of direction data) illustrates the planned testing, release and availability dates for Spotfire products and services. It is for informational purposes only and its contents are subject to change without notice. Planning to implement - generally 6-12 months out. Likely to Implement - generally means 12-18 months out.
Copyright © 2014-2023 Cloud Software Group, Inc. All Rights Reserved.
Cloud Software Group, Inc. ("Company") follows the EU Standard Contractual Clauses as per the Company's Data Processing Agreement.
Terms of Use |
Privacy Policy |
Trademarks |
Patents |
Contact Us
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
}