Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community,
I have one qvw file in that i have text box in that reload time(),
in server side i have schedule at 9:00 AM, suppose if i am reload again 11:00 AM,
I don't want to change the reload time....
Thanks in Advance..
Hi,
Try below:
=if(time(ReloadTime()) > Time#( '09:00:00','HH:MM:SS TT'),'9:00 AM',ReloadTime())
HTH
Sushil
if you want a static value as the reload time then you need to store it in any variable and then need to use this variable to display the reload time, dynamically with the reloadtime() function you cannot achieve this
then what is the use of reload time() if you dont want to update it.
still if you want to see only 9:00AM you can use
=date(ReloadTime())&' ' &'9:00AM'
Thanks
BKC