Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
priyarane
Specialist
Specialist

Last Save time on app

Hi Experts,

Is there any way that to know last save time on application like reload time(reloadtime()).

thank you,

Priya

13 Replies
Roop
Specialist
Specialist

Now() allows you to do this.

Returns a timestamp of the current time from the system clock. The timer_mode may have the following values:

0 Time at previously finished reload (not currently ongoing reload)
1 Time at function call
2 Time when the document was opened  

Not applicable

Hi Rupert,

If you don't mind could you please explain in detail? to get save time

Thank you

Roop
Specialist
Specialist

If you create a textbox with:

=now(0)

That will give you the time when previous reload finished. This also appears in the bottom right of the QlikView desktop screen.

= now(1)

Time when a function call was made

=now(2)

Time that the application was openend

Not applicable

Got it Rupert,

so now, how to get save time. Here the requirement like - document saved on 03-mar-15 7.15 Pm and closed now user want to see that last refreshed time(reload + refreshed)  reload we have(reload()) but save time?

thank you

Not applicable

Could you check and community know if filetime('yourqvdoc.qvw') helps?

Roop
Specialist
Specialist

I think that those are the only available types. Anything else you would have to create yourself. You could possibly do something similar within a macro.

awhitfield
Partner - Champion
Partner - Champion

Hi,

a simple way is the use a text box with something like:

='Last Updated : '&reloadtime()

Which would give you

Not applicable

Hi Andrew,

Not reload time, need to know about SAVE TIME.  For script part we will reload and what ever changes made at application no need to reload, so If we made any changes at application part(refresh time).

Not applicable

Hi Guru,

I didn't get it. Could you please explain in brief?