Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am curious to know why
Let vVar= Reloadtime(); is working and why not when am using same in
Let vVar1='C:\Desktop\'&reloadtime(); or Let vVar1='C:\Desktop\'&$(vVar);
Hi Sivaraj,
Check this its workding
Let vVar= Reloadtime();
Let vVar1='C:\Desktop\'& "'" & reloadtime() & "'" ;
I think Single quotes is missing in your expression while concatenating. ReloadTime is considering as number, by concatenating single quotes it is becoming string.
Hope this helps you.
Regards,
Jagan.
Hi Sivaraj Seeman,
It works if you convert the values to text before of concatenating the strings.
Let vVar= Reloadtime();
Let vVar1='C:\Desktop\'&text(reloadtime());
Let vVar2='C:\Desktop\'&'$(vVar)';
Regards
Both solutions getting script reload failed
Hi Sivaraj Seeman,
It works if you convert the values to text before of concatenating the strings.
Let vVar= Reloadtime();
Let vVar1='C:\Desktop\'&text(reloadtime());
Let vVar2='C:\Desktop\'&'$(vVar)';
I've updated this post with an example.
See the attached file. Hope this helps you.
Regards
Hi,
If you are using the value of RELOADTIME () to create a file, remember that you can not create files using certain characters in their name.
If you need to generate a file, use your example removing the special characters with the DATE () function
ex.:
Let vVar1 = 'C: \ Desktop \ "& DATE (reloadtime (),' YYYYMMDD_hhmmss [. Fff] ');
Please reload the attched file you will get to know
Hi
this directory doesn't exists "C:\Desktop"
Verify
"C:\users\your_user\desktop"