Rob Posted February 16, 2022 Share Posted February 16, 2022 Trying to calculate the time duration since a logging event in minutes. Storing SysTime() in a variable and want to calculate the time in minutes since. Quote Link to comment Share on other sites More sharing options...
AzeoTech Posted February 16, 2022 Share Posted February 16, 2022 Simply subtract that variable from systime() and divide by 60. Maybe throw a floor() in there if you don't want a decimal. So: floor((systime() - starttime) / 60) Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.