Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
saurabh_karlewar
Contributor III
Contributor III

User details on QlikSense screen

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.

1 Solution

Accepted Solutions
vlad_komarov
Partner - Specialist III
Partner - Specialist III

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

View solution in original post

2 Replies
vlad_komarov
Partner - Specialist III
Partner - Specialist III

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

saurabh_karlewar
Contributor III
Contributor III
Author

Thank you. This was helpful.