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 create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm 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 ) );