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

When was the script started

Hello qlikers 🙂 ,

is there a option when the script was executed ?

For example

Script Start
// here would be the script
LET vTimeWhenTheScriptStarted  = ScriptStartTime

 In the middle of the script I want to get the Start Time of the script. But I dont want to define a variabel at the start. 

I dont this

Script Start
Let vStart = ScriptStartTime
// here would be the script
LET vTimeWhenTheScriptStarted = $(vStart)

 

I hope you can help me! Thank you in advance. 🙂

Looking forward to reading some answers. 

2 Replies
Anil_Babu_Samineni

If you want them as field, You need to write variable

LET vStartReload = Now();

//Script

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anonymous
Not applicable
Author

Thank you, but unfortunately I don't want a var 

LET vStartReload = Now();

 

I want something like this

// Script Start
...
...
...
LET vWhenWasTheScriptStarted = ScriptStarted.Time()