cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to move from signal modeling to system modeling at the first JMP Aerospace Analytics webinar. Register. June 18, 1 p.m. US Eastern Time.

JMP Wish List

We want to hear your ideas for improving JMP. Share them here.
Choose Language Hide Translation Bar

Functions to get system time zone

Would like a function to determine the time zone of the system, and whether daylight savings time is active.

1 Comment
Judah
Level II

This would be very helpful.  I do this using a very kludgy method, but I don't have any thing for daylight saving time though.

UTC_offset = Date Difference( Query( Scalar, "select jmpdate( current_timestamp );" ), Today(), "Hour", "Fractional" );
CurrentTime_UTC = As Date( Today() - In Hours( UTC_offset ) );