Discussion board where members can learn more about Qlik Sense App Development and Usage.
Hi,
I got one request where Customer wants to see the current logged in user information i.e name and logout button on top right corner of each dashboard something similar in the attached file. Can someone suggest the way to achieve this.
There is a function called OSUser() - it should work perfectly in your case.
It works in scripts (so you can create a variable) and in charts (so you can display the name directly).
I would suggest to use it in the script so you can format the output string.
Here is the default output example:
UserDirectory=ABCAAAAA; UserId=v.komarov
Regards,
Vlad
There is a function called OSUser() - it should work perfectly in your case.
It works in scripts (so you can create a variable) and in charts (so you can display the name directly).
I would suggest to use it in the script so you can format the output string.
Here is the default output example:
UserDirectory=ABCAAAAA; UserId=v.komarov
Regards,
Vlad
Thank you. This was helpful.