Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi all,
On text box write a script to show looged on user date or user details ,while opening a qlikview want to diplay date on textbox obj .Please help me out .
Hi Sunil,
You may look into this function:
=OSuser() - Returns a string containing the name of the current user as returned by the operating system.
=QVuser() - Returns a string containing the name of the current QlikView user as entered in a section access.
=ComputerName() - Returns a string containing the name of the computer as returned by the operating system.
=ReloadTime() - Returns a timestamp for when the script last finished reexecuting.
Regards,
Sokkorn
Hi Sunil,
You may look into this function:
=OSuser() - Returns a string containing the name of the current user as returned by the operating system.
=QVuser() - Returns a string containing the name of the current QlikView user as entered in a section access.
=ComputerName() - Returns a string containing the name of the computer as returned by the operating system.
=ReloadTime() - Returns a timestamp for when the script last finished reexecuting.
Regards,
Sokkorn
Take a text object & paste the below lines
Data accessed ' &
now(2) & ' User ' & OSUser()
Also check below to add Time and Date...
now([ timer_mode])
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
Default timer_mode is 1. The timer_mode = 1 should be used with caution, since it polls the operating system every second and hence could slow down the system.