Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I need last reload end time as reloadtime() gives melast reload start time.
Thanx in advance.
Use Now() or Reloadtime() function but better you use NOW() with variables
See simple way
Let vStart = NOW();
Load statements
..
..
Let vEnd = NOW();
Let Totaltime = Time(vEnd-vStart); //For total time duration you can use this line
See this Post:
Alkesh ,
Could you please elaborate what exactly you are looking for. If you want to see last reload time than use this script below:
='[ Updated at ' & timestamp(reloadtime(), 'hh:mm on MMM DD, YYYY') &' ]'
Thanks,
AS
Hi,
You can give like,
before start the script
Let vStart = now()
At the end of the script
Let vEnd = now()
Then Using vStart variable, you can get start reload time
Using vEnd variable , You can get end reload time.
If you want to calculate reload maximum time, you can use below expression
=time(vStart - vEnd, 'hh:mm:ss')
Hope it may helps
you can fetch this from log file
last line datetime. try your trick to find it our
Hi,
Use Now() at the of the script
so when u will reload the script it will be the last statement to be executed , and that time will be your reload end time.
Regards,
Vivek
Hi..
Use let vreloadtime=now(0)
This gives you the time when the reload ended.
HTH
Ravi N.
Not sure if I understand correctly but reloadtime() function always shows the application loading finish time.