Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi gurus
I have user I'd,name in my section access field.
I have text object in dashboard. It will display user name.
I written in text object like bellow.
If qv user =1,janson,
If qv user=2,Michele,admin.
Issue:if any user added in section access excel sheet.
If statement can't display the login user name in dashboard.
How to proceed on this situation.
Thanks in advance.
To display the username you didn't need any if-loop you could simply use:
= osuser() // NT-User from access point
= qvuser() // section access user - might be different if you didn't use the NT-User for the section access
- Marcus
Osuser and qv user will display user IDs .am I right?
I want to display corresponding name of the user
Thanks for your time
Hi,
You can simply try
OsUser() Or QVUser() functions for this, no need of if().
Regards,
Jagan.
Hi,
Load one table with user master table details like below
UserID, Name
1, janson
2, Michele
Now in expression use like below
=Only({<UserID={'$(=OSUser())'}>} Name)
OR
=Only({<UserID={'$(=QVUser())'}>} Name)
Hope this helps you.
Regards,
Jagan.
Hi Babu,
If you got the Answer close this thread by giving Correct Answer to the helpful post.
Regards,
Jagan.